forked from atmos/slash-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
117 lines (117 loc) · 3.93 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "SlashHeroku",
"logo": "https://cloud.githubusercontent.com/assets/704696/3822434/60e8b060-1d25-11e4-9baf-7fdb7f467e2b.gif",
"description": "Run the heroku toolbelt from Slack.",
"keywords": [
"heroku",
"slack",
"slash command",
"chatops"
],
"website": "http://github.com/atmos/slash-heroku",
"repository": "https://github.com/atmos/slash-heroku",
"success_url": "/install",
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"env": {
"APP_NAME": {
"description": "The application name used by the coal_car gem for identifying this app",
"value": "slash-heroku"
},
"GITHUB_ADMIN_LOGINS": {
"description": "A comma delimited list of GitHub logins that can access sidekiq-web",
"value": "atmos,ys,stellacotton"
},
"GITHUB_OAUTH_ID": {
"description": "The GitHub OAuth client id for being an OAuth consumer",
"required": false
},
"GITHUB_OAUTH_SECRET": {
"description": "The GitHub OAuth client secret for being an OAuth consumer",
"required": false
},
"HEROKU_OAUTH_ID": {
"description": "The Heroku OAuth client id for being an OAuth consumer",
"required": false
},
"HEROKU_OAUTH_SECRET": {
"description": "The Heroku OAuth client secret for being an OAuth consumer",
"required": false
},
"HOSTNAME": {
"description": "The full hostname that the application is running at.",
"value": "slash-heroku.atmos.org"
},
"LIBRATO_PASSWORD": {
"description": "The password for your librato integration.",
"required": false
},
"LIBRATO_SOURCE": {
"description": "The source prefix for your librato integration.",
"required": false
},
"LIBRATO_TOKEN": {
"description": "The token for your librato integration.",
"required": false
},
"LIBRATO_USER": {
"description": "The user email for your librato integration.",
"required": false
},
"PRIVACY_POLICY_URL": {
"description": "The url of your privacy policy.",
"value": "https://github.com/atmos/slash-heroku/blob/master/PRIVACY.md"
},
"RAILS_ENV": {
"description": "This is what the RAILS_ENV unix environmental variable is set to.",
"value": "production"
},
"RAILS_SECRET_KEY_BASE": {
"description": "Unique token for signing cookies. This is generated.",
"generator": "secret"
},
"RBNACL_SECRET": {
"description": "The secret used for writing encrypted values to the database. Generate with 'dd if=/dev/urandom bs=32 count=1 2>/dev/null | openssl base64'.",
"required": false
},
"REDIS_URL": {
"description": "The URL for the Heroku Redis install that sidekiq uses. Leave this alone.",
"value": "redis://"
},
"ROLLBAR_ACCESS_TOKEN": {
"description": "The token for your rollbar project.",
"required": false
},
"SLACK_APP_URL": {
"description": "The direct link to your app in the Slack App Store",
"value": "https://slack.com/apps/A0YJZJA3E-heroku-chatops-for-slack-beta"
},
"SLACK_OAUTH_ID": {
"description": "The Slack OAuth client id for being an OAuth consumer",
"required": false
},
"SLACK_OAUTH_SECRET": {
"description": "The Slack OAuth client secret for being an OAuth consumer",
"required": false
},
"SLACK_SLASH_COMMAND_TOKEN": {
"description": "The token from slack to ensure it's a valid incoming request",
"required": false
},
"YUBIEXPIRE_HOSTNAME": {
"description": "The hostname to post keys to to ensure everything gets invalidated at some point.",
"required": false
},
"KOLKRABBI_HOSTNAME": {
"description": "The hostname for Heroku's kolkrabbi service. Leave this alone.",
"value": "kolkrabbi.heroku.com"
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate",
"test-setup": "bundle install --with test",
"test": "bin/cibuild"
}
}