forked from garethpaul/django-rest-apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
49 lines (49 loc) · 1.29 KB
/
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
43
44
45
46
47
48
49
{
"name":"django-rest-apis",
"description":"Sample Python/Django site for Twitter showcasing OAuth and simple REST API calls. ",
"repository":"https://github.com/twitterdev/django-rest-apis",
"addons": ["heroku-postgresql:hobby-dev"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/shunjikonishi/heroku-buildpack-ffmpeg"
}
],
"keywords":[
"python",
"django",
"template",
"skeleton"
],
"env":{
"DJANGO_SECRET_KEY":{
"description":"A randomly generated secret to secure your Django installation",
"generator":"secret"
},
"CONSUMER_KEY":{
"description":"Twitter API consumer key (Visit http://apps.twitter.com)",
"value":"",
"required":true
},
"CONSUMER_SECRET":{
"description":"Twitter API consumer secret",
"value":"",
"required":true
},
"ACCESS_TOKEN":{
"description":"Twitter API access token",
"value":"",
"required":true
},
"ACCESS_TOKEN_SECRET":{
"description":"Twitter API access token secret",
"value":"",
"required":true
}
},
"scripts":{
"postdeploy":"python manage.py makemigrations home --noinput; python manage.py migrate --fake-initial; python manage.py makemigrations --noinput; python manage.py migrate --noinput"
}
}