-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.json
More file actions
23 lines (23 loc) · 806 Bytes
/
Copy pathapp.json
File metadata and controls
23 lines (23 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "LabHamster Purchase Management",
"description": "A simple Django app for order / purchase management in a small to medium-sized team",
"repository": "https://github.com/graik/labhamster.git",
"keywords": ["python", "django", "purchase", "science"],
"env": {
"DJANGO_SECRET_KEY" : {
"description": "A secret key for https encryption",
"generator": "secret"
},
"TIME_ZONE" : {
"description": "(defaults to Asia/Riyadh); see: http://en.wikipedia.org/wiki/List_of_tz_zones_by_name",
"required": false
}
},
"addons": [ "heroku-postgresql" ],
"scripts": {
"postdeploy" : "./manage.py migrate --noinput; python manage.py loaddata initial_data.json"
},
"buildpacks": [
{"url": "heroku/python"},
]
}