forked from PodcasterDJ/Podcaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 1.28 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
{
"name": "Podcaster",
"description": "Set-up FREE Django Podcasts & Blog page in seconds.",
"website": "http://hvitis.com",
"success_url": "https://hvitis.com/free-podcasts-blog-template-based-on-django",
"addons": ["heroku-postgresql:hobby-dev",
"bucketeer:hobbyist"
],
"repository": "https://github.com/hvitis/podcaster",
"logo": "https://i.ibb.co/QQNtj9j/Podcaster-Logo-Medium.png",
"buildpacks": [{
"url": "heroku/python"
}],
"env": {
"ENV": {
"description": "Environment name. Changing this value will cause your app to run in DEBUG mode. You can change it once deployed.",
"value": "prod",
"generator": "secret"
},
"SECRET_KEY": {
"description": "Django-generated secret key. You can change it once deployed.",
"value": "4gbt+ow7luo&vbv96uug+81_+$$)zpf28xb!@#$+($(93+kz@0",
"generator": "secret"
},
"ALLOWED_HOSTS": {
"description": "Address of your webpage. YOUR_APP_NAME - name of your app you have just chosen.",
"value": "https://YOUR_APP_NAME.herokuapp.com",
"required": true
}
},
"scripts": {
"postdeploy": "chmod +x postdeploy-django.sh && ./postdeploy-django.sh"
}
}