-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
76 lines (76 loc) · 2.37 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "Spongemock",
"description": "Creates spongebob mocking memes on various media",
"keywords": [
"meme",
"spongebob",
"slack"
],
"repository": "https://github.com/rjchee/spongemock",
"logo": "https://spongemock.herokuapp.com/static/spongemockicon.jpg",
"env": {
"APP_URL": {
"description": "The URL for the app (usually https://your-app-name.herokuapp.com/",
"value": "",
"required": "true"
},
"PLUGINS": {
"description": "Comma-separated list of components you want to run (Example: slack,twitter,messenger). If blank, all components are run",
"value": "slack,twitter",
"required": false
},
"DEBUG": {
"description": "A non-false value will make the app log the messages it would've sent instead of sending them.",
"value": "false",
"required": false
},
"SLACK_CLIENT_ID": {
"description": "Your Slack client ID",
"value": "",
"required": false
},
"SLACK_CLIENT_SECRET": {
"description": "Your Slack client secret",
"value": "",
"required": false
},
"SLACK_VERIFICATION_TOKEN": {
"description": "Your Slack verification token",
"value": "",
"required": false
},
"TWITTER_USERNAME": {
"description": "Your Twitter username",
"value": "",
"required": false
},
"TWITTER_CONSUMER_KEY": {
"description": "Your Twitter consumer key (API key)",
"value": "",
"required": false
},
"TWITTER_CONSUMER_SECRET": {
"description": "Your Twitter consumer secret (API secret)",
"value": "",
"required": false
},
"TWITTER_ACCESS_TOKEN": {
"description": "Your Twitter access token (make sure it has direct message access",
"value": "",
"required": false
},
"TWITTER_ACCESS_TOKEN_SECRET": {
"description": "Your Twitter access token secret",
"value": "",
"required": false
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/go"
}
]
}