-
Notifications
You must be signed in to change notification settings - Fork 48
/
app.json
56 lines (56 loc) · 1.54 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
{
"name": "Origin Protocol website",
"description": "Development version of originprotocol.com",
"website": "https://www.originprotocol.com/",
"repository": "https://github.com/OriginProtocol/origin-website",
"logo": "https://avatars1.githubusercontent.com/u/30638653",
"success_url": "/",
"env": {
"FLASK_SECRET_KEY": {
"description": "Secret key for the Flask framework",
"generator": "secret",
"required": true
},
"HOST": {
"description": "Replace 'app-name' with the App Name you chose above",
"value": "app-name.herokuapp.com",
"required": true
},
"SENDGRID_API_KEY": {
"description": "SendGrid key (if you want to be able to send emails)",
"required": false
},
"DEV_EMAIL": {
"description": "Email address",
"required": false
},
"RECAPTCHA_SITE_KEY": {
"description": "To enable recaptcha, request keys from https://www.google.com/recaptcha/admin",
"required": false
},
"RECAPTCHA_SECRET_KEY": {
"required": false
},
"GITHUB_KEY": {
"description": "If you want to fetch our Github contributors for team page",
"required": false
}
},
"addons": [{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "heroku-redis:hobby-dev"
}
],
"buildpacks": [{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nginx"
}
],
"scripts": {
"postdeploy": "python tools/manage.py db upgrade; python logic/scripts/fetch_github_stats.py"
}
}