forked from coinfi/coinfi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
57 lines (57 loc) · 2.17 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
{
"name": "coinfi-rails",
"scripts": {
"postdeploy": "pg_dump $STAGING_DATABASE_URL | psql $DATABASE_URL && bundle exec rake db:migrate"
},
"env": {
"ADMINISTRATE_PASSWORD": { "required": true },
"AWS_ACCESS_KEY_ID": { "required": true },
"AWS_SECRET_ACCESS_KEY": { "required": true },
"BLAZER_DATABASE_URL": { "required": true },
"BLAZER_PASSWORD": { "required": true },
"BLAZER_USERNAME": { "required": true },
"COINFI_PRICES_URL": { "required": true },
"CONVERTKIT_API_KEY": { "required": true },
"CONVERTKIT_API_SECRET": { "required": true },
"COUNTER_FACEBOOK": { "required": true },
"COUNTER_REDDIT": { "required": true },
"COUNTER_TELEGRAM": { "required": true },
"HEAP_APP_ID": { "required": true },
"LANG": { "required": true },
"MAILGUN_SMTP_PORT": { "required": true },
"NEWS_TAGGER_ENDPOINT": { "required": true },
"NEWS_TAGGER_BASIC_AUTH_PASSWORD": { "required": true },
"NEWS_TAGGER_BASIC_AUTH_USERNAME": { "required": true },
"RACK_ENV": { "required": true },
"RAILS_ENV": { "required": true },
"RAILS_LOG_TO_STDOUT": { "required": true },
"RAILS_SERVE_STATIC_FILES": { "required": true },
"ROLLBAR_ACCESS_TOKEN": { "required": true },
"ROLLBAR_CLIENT_ACCESS_TOKEN": { "required": true },
"ROLLBAR_ENDPOINT": { "required": true },
"ROOT_DOMAIN": { "required": true },
"S3_BUCKET": { "required": true },
"SECRET_KEY_BASE": { "required": true },
"STAGING_DATABASE_URL": { "required": true },
"SUPERFEEDR_CALLBACK_URL_SEGMENT_SECRET": { "required": true },
"SUPERFEEDR_SECRET": { "required": true },
"SUPERFEEDR_TOKEN": { "required": true },
"SUPERFEEDR_USER": { "required": true },
"TWITTER_ACCESS_SECRET": { "required": true },
"TWITTER_ACCESS_TOKEN": { "required": true },
"TWITTER_API_KEY": { "required": true },
"TWITTER_API_SECRET": { "required": true },
"TWITTER_APP_ID": { "required": true },
"WEBFACTION_SMTP_PASSWORD": { "required": true }
},
"formation": {},
"addons": [
"heroku-postgresql:hobby-basic",
"papertrail",
"rollbar"
],
"buildpacks": [
{ "url": "heroku/nodejs" },
{ "url": "heroku/ruby" }
]
}