-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.json
41 lines (41 loc) · 850 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
35
36
37
38
39
40
41
{
"name":"django-rest-boilerplate",
"description":"Another Django boilerplate for API-first development, local Docker and deployments on Heroku",
"keywords":[
"django",
"django-rest-framework",
"Heroku",
"RQ",
"Redis",
"Docker"
],
"website":"https://www.pixelpassion.io",
"repository":"https://github.com/pixelpassion/django-rest-boilerplate",
"env":{
"ENV":"production",
"SECRET_KEY":{
"generator":"secret"
}
},
"formation": {
"web": {
"quantity": 1
},
"worker": {
"quantity": 1
}
},
"addons":[
{
"plan":"heroku-postgresql:hobby-dev"
},
{
"plan":"heroku-redis:hobby-dev"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
}
]
}