-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
39 lines (39 loc) · 889 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": "Monitoring IG",
"description": "Deploy on Heroku the backend bhind the Monitorin-IG web extension",
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"IG_USERNAME_SALT_SECRET_KEY": {
"generator": "secret"
},
"DEBUG": "false",
"DJANGO_SETTINGS_MODULE": "undressing_ig.settings_heroku",
"PROJECT_PATH": "backend",
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"GOOGLE_CLOUD_API_KEY": {
"required": true
},
"INSTAGRAM_SESSION_COOKIE": {
"required": true
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "https://github.com/timanovsky/subdir-heroku-buildpack"
},
{
"url": "heroku/python"
}
]
}