-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
64 lines (64 loc) · 1.55 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "Slack invite automation",
"description": "Slack invite automation using sinatra",
"keywords": [
"slack",
"sinatra"
],
"env": {
"SESSION_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"SLACK_TEAM_NAME": {
"description": "Your slack team name",
"value": "Default Team"
},
"SLACK_TEAM_DESC": {
"description": "Description of your slack",
"value": ""
},
"SLACK_TOKEN": {
"description": "Your slack api token. get from https://api.slack.com/web#auth",
"value": ""
},
"BACKGROUND_COLOR": {
"description": "Background color",
"value": "#34495E",
"required": false
},
"TEXT_COLOR": {
"description": "Text color",
"value": "#FDFCFB",
"required": false
},
"EMAIL_BACKGROUND_COLOR": {
"description": "Eamil input background color",
"value": "#FDFCFB",
"required": false
},
"EMAIL_TEXT_COLOR": {
"description": "Email input text color",
"value": "#737373",
"required": false
},
"BUTTON_COLOR": {
"description": "Submit button color",
"value": "#F39C12",
"required": false
},
"BUTTON_HOVER_COLOR": {
"description": "Submit button mouse hover color",
"value": "#D78D19",
"required": false
},
"BUTTON_TEXT_COLOR": {
"description": "Submit button text color",
"value": "#FDFCFB",
"required": false
}
},
"addons": [
"papertrail"
]
}