This repository has been archived by the owner on Dec 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
61 lines (61 loc) · 2.05 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
{
"name": "nourish.party",
"repository": "https://github.com/wecohere/nourish.party",
"description": "Nourish Party is a community-focused, online payment platform for groups of interdependent creatives.",
"keywords": ["payments", "federated", "community"],
"scripts": {
"postdeploy": "bundle exec rake db:migrate db:seed"
},
"env": {
"APP_ROOT_URL": "https://www.your-instance.example.com",
"LANG": "en_US.UTF-8",
"RACK_ENV": "production",
"RAILS_ENV": "production",
"RAILS_LOG_TO_STDOUT": "enabled",
"RAILS_SERVE_STATIC_FILES": "enabled",
"FORCE_SEED": "true",
"EMAIL_DEFAULT_FROM": { "required": true },
"SMTP_AUTHENTICATION": { "required": true },
"SMTP_ADDRESS": { "required": true },
"SMTP_DOMAIN": { "required": true },
"SMTP_PASSWORD": { "required": true },
"SMTP_PORT": { "required": true },
"SMTP_USER_NAME": { "required": true },
"SECRET_KEY_BASE": {
"generator": "secret"
},
"SLACK_OAUTH_CLIENT_ID": {
"description": "Client ID for Slack OAuth. Get from https://api.slack.com/apps. Leave blank if you don't want to support Slack as a reward provider"
},
"SLACK_OAUTH_CLIENT_SECRET": {
"description": "Client Secret for Slack OAuth. Get from https://api.slack.com/apps. Leave blank if you don't want to support Slack as a reward provider"
},
"STRIPE_OAUTH_CLIENT_ID": {
"description": "Client ID for Stripe OAuth. Get from https://dashboard.stripe.com/account/applications/settings"
},
"STRIPE_PUBLISHABLE_KEY": {
"description": "Publishable key for generating stripe transactions. Get form https://dashboard.stripe.com/account/apikeys"
},
"STRIPE_SECRET_KEY": {
"description": "Secret key used to generate stripe transactions. Get form https://dashboard.stripe.com/account/apikeys"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql",
"papertrail",
"sentry"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}