-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
30 lines (30 loc) · 857 Bytes
/
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
{
"name": "Open Humans Data Uploader",
"description": "A web app to support data uploads to an Open Humans project",
"repository": "https://github.com/OpenHumans/oh-23andme-source",
"keywords": ["django"],
"addons": [
"heroku-redis:hobby-dev"
],
"scripts": {
"postdeploy": "python manage.py init_proj_config"
},
"env": {
"HEROKUCONFIG_APP_NAME": {
"description": "Heroku \"App name\" (copy/paste what you set above)",
"required": true
},
"ADMIN_PASSWORD": {
"description": "You'll use this password to manage configuring this app.",
"required": true
},
"SECRET_KEY": {
"description": "This is set for you and is used to encrypt data.",
"generator": "secret"
},
"REDIS_URL": {
"description": "Where your redis resides",
"value": "redis://"
}
}
}