-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.json
57 lines (57 loc) · 2.1 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": "Profbit",
"description": "Track your bitcoin, bitcoin cash, ethereum, and litecoin gains and losses in one place.",
"repository": "https://github.com/joshblum/profbit",
"keywords": ["coinbase", "bitcoin", "bitcoin cash", "ethereum", "litecoin", "flask"],
"logo": "http://www.profbit.herokuapp.com/static/img/app-icon.png",
"website": "https://www.profbit.herokuapp.com",
"success_url": "/",
"scripts": {
"postdeploy": "FLASK_APP=profbit/app.py flask syncdb"
},
"buildpacks": [{
"url": "heroku/python"
}, {
"url": "heroku/nodejs"
}],
"addons": [{
"plan": "heroku-postgresql"
}],
"env": {
"SECRET_KEY": {
"description": "Secret key for the flask application",
"generator": "secret"
},
"SOCIAL_AUTH_COINBASE_KEY": {
"description": "Your OAuth application key. When registering your app be sure to add the redirect url i.e. https://app-name.herokuapp.com/complete/coinbase/.",
"value": "Fill in the the key after registering your app: https://coinbase.com/oauth/applications/new"
},
"SOCIAL_AUTH_COINBASE_SECRET": {
"description": "You OAuth secret key.",
"value": "Get the secret after registering your app: https://coinbase.com/oauth/applications/new"
},
"SENTRY_PRIVATE_DSN": {
"description": "If you would like to use Sentry to record errors, record your private DSN here. https://sentry.i://docs.sentry.io/quickstart/#about-the-dsn.",
"value": "Optional",
"required": false
},
"GOOGLE_ANALYTICS_ID": {
"description": "If you would like to use Google Analytics (homepage only) record your analytics id here. https://analytics.google.com",
"value": "Optional",
"required": false
},
"CONTACT_EMAIL": {
"description": "Optional email for user feedback and questions.",
"value": "[email protected]",
"required": false
},
"IS_HEROKU": {
"description": "Signals that the server is running on Heroku.",
"value": "1"
},
"WEB_CONCURRENCY": {
"description": "Number of workers for our application.",
"value": 4
}
}
}