-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
43 lines (42 loc) · 1.24 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
{
"name": "Deploy Labper",
"description": "A lab evaluator for colleges",
"image": "heroku/python",
"repository": "http://github.com/aashutoshrathi/labper",
"keywords": ["python", "django" ],
"addons": [ "heroku-postgresql" ],
"env": {
"EMAIL_HOST_USER": {
"description": "Email which will be used to send notifications",
"value": "[email protected]"
},
"EMAIL_HOST_PASSWORD": {
"description": "Password of your email, don't worry its all safe here",
"value": "yourPassword"
},
"EMAIL_HOST": "smtp.gmail.com",
"EMAIL_PORT": "465",
"DEBUG": "False",
"ALLOWED_HOSTS": ".localhost, .herokuapp.com",
"SKEY": {
"description": "Add your generated secret key here",
"value": ""
},
"G_KEY": {
"description": "Your Google OAuth Client ID",
"value": ""
},
"G_SKEY": {
"description": "Google OAuth Secret Key",
"value": ""
}
},
"environments": {
"test": {
"scripts": {
"test-setup": "python manage.py collectstatic --noinput",
"test": "python manage.py test"
}
}
}
}