-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
51 lines (51 loc) · 1.63 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
{
"name": "TIM CMS",
"description": "This app is the CMS part of TIM - The Infos Machine",
"repository": "https://github.com/wdr-data/tim-cms",
"success_url": "/admin",
"scripts": {
"postdeploy": "python app/manage.py migrate && echo \"from django.contrib.auth.models import User; User.objects.create_superuser('${ADMIN_USER}', '${ADMIN_EMAIL}', '${ADMIN_PASSWORD}')\" | python app/manage.py shell"
},
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"ADMIN_USER": {
"description": "Username for the initial superuser",
"value": ""
},
"ADMIN_EMAIL": {
"description": "Email address of the superuser",
"value": ""
},
"ADMIN_PASSWORD": {
"description": "Initial password for the superuser",
"value": ""
},
"BOT_SERVICE_ENDPOINT_FB": {
"description": "URL to the AWS Lambda service endpoint of the 'wdraktuell-bot-fb' cloud formation",
"value": ""
},
"BOT_SERVICE_ENDPOINT_TG": {
"description": "URL to the AWS Lambda service endpoint of the 'wdraktuell-bot-fb' cloud formation",
"value": ""
},
"AMP_SERVICE_ENDPOINT": {
"description": "URL to the AWS Lambda service endpoint of the 'informant-amp' cloud formation",
"value": ""
}
},
"addons": ["heroku-postgresql:hobby-dev"],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-locale"
},
{
"url": "https://github.com/elishaterada/heroku-google-application-credentials-buildpack.git"
}
]
}