-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
39 lines (39 loc) · 1010 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
{
"name": "Django GPS-CarTracker",
"description": "A django app project to track your car location",
"repository": "https://github.com/AliBigdeli/Django-Car-Tracker-App",
"website": "https://alibigdeli.github.io",
"keywords": [
"django",
"djangorestframework",
"djangotemplate",
"python"
],
"env": {
"DJANGO_SUPERUSER_USERNAME": {
"description": "username for your superuser"
},
"DJANGO_SUPERUSER_PASSWORD": {
"description": "password for your superuser, please choose an strong one"
},
"DJANGO_SUPERUSER_EMAIL": {
"description": "email for your superuser"
}
,
"SECRET_KEY": {
"description": "A secret key to encrypt data",
"generator": "secret"
}
,
"GOOGLEMAP_APIKEY": {
"description": "google map api key to use in pages",
}
},
"image": "heroku/python",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
}
],
"success_url": "/"
}