-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
34 lines (34 loc) · 957 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
31
32
33
34
{
"name": "nibble",
"description": "A webcomics platform that tries its best to be easy to get going with.",
"website": "https://nibbleproject.com",
"repository": "https://github.com/nibbleproject/nibble",
"success_url": "/",
"stack": "heroku-20",
"addons": [
"heroku-postgresql"
],
"env": {
"DJANGO_SETTINGS_MODULE": "nibble.settings.production",
"SUPERUSER_NAME": {
"description": "Username for the initial superuser."
},
"SENTRY_URL": {
"description": "Reporting URL for Sentry.",
"required": false
},
"SUPERUSER_EMAIL": {
"description": "Email for the initial superuser."
},
"SUPERUSER_PASSWORD": {
"description": "Password for the initial superuser."
},
"SECRET_KEY": {
"description": "Key for encrypting cookies.",
"generator": "secret"
}
},
"scripts": {
"postdeploy": "python manage.py migrate && python manage.py nibble_setup"
}
}