-
Notifications
You must be signed in to change notification settings - Fork 22
/
app.json
34 lines (34 loc) · 935 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
{
"name": "Django Classified",
"description": "Django Classified Demo",
"repository": "https://github.com/slyapustin/django-classified-demo",
"keywords": [
"django",
"classified"
],
"env": {
"SECRET_KEY": {
"description": "A secret key for a particular Django installation.",
"generator": "secret"
},
"SOCIAL_AUTH_FACEBOOK_KEY": {
"description": "Check docs for more info on how to obtain keys here: https://python-social-auth.readthedocs.io/en/latest/backends/facebook.html"
},
"SOCIAL_AUTH_FACEBOOK_SECRET": {
"description": "Check docs for more info on how to obtain keys here: https://python-social-auth.readthedocs.io/en/latest/backends/facebook.html"
}
},
"scripts": {
"postdeploy": "python ./manage.py setup_project"
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"addons": [
{
"plan": "heroku-postgresql"
}
]
}