-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (47 loc) · 1.07 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
{
"name": "fantastic-doodle",
"scripts": {
},
"env": {
"ALLOWED_HOSTS": {
"description": "https://docs.djangoproject.com/en/1.10/ref/settings/#allowed-hosts",
"value": "*.herokuapp.com"
},
"DJANGO_SETTINGS_MODULE": {
"description": "Tell Django which settings you’re using (e.g. 'service.settings.production').",
"value": "service.settings.production"
},
"SECRET_KEY": {
"description": "This gets generated",
"generator": "secret"
}
},
"formation": {
},
"addons": [
"heroku-postgresql",
"heroku-redis"
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"environments": {
"test": {
"scripts": {
"test-setup": "python manage.py diffsettings",
"test": "python -Wd manage.py test --settings service.settings.test"
},
"env": {
"DATABASE_URL": "sqlite://",
"DJANGO_SETTINGS_MODULE": "service.settings.test",
"SECRET_KEY": "secretkey"
},
"addons":[
"heroku-postgresql",
"heroku-redis"
]
}
}
}