-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
42 lines (42 loc) · 923 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
42
{
"name": "Generic Qr toolkit",
"description": "This app can create qr codes, which can be changed after they've been printed.",
"keywords": [
"python",
"qrcode",
"qr",
"Django"
],
"website": "https://qr.stad.gent/",
"repository": "https://github.com/lab9k/generic-qr-toolkit-ghent",
"success_url": "/admin",
"scripts": {
"postdeploy": "python manage.py migrate"
},
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "The number of processes to run.",
"value": "QRcodeAPI.settings.production"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}