-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
32 lines (32 loc) · 908 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
{
"name": "No Cookie Analytics",
"description": "Hassle-free privacy-friendly analytics",
"repository": "https://github.com/nocookie-analytics/core",
"logo": "https://nocookieanalytics.com/img/logo.png",
"keywords": ["python", "analytics"],
"website": "https://nocookieanalytics.com",
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"FIRST_SUPERUSER": {
"description": "The first superuser to be created",
"value": "[email protected]"
},
"FIRST_SUPERUSER_PASSWORD": {
"description": "The password for the first superuser",
"value": "something-very-secure-please-change"
}
},
"stack": "container",
"success_url": "/login",
"scripts": {
"postdeploy": "sh /app/prestart.sh"
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}