-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
38 lines (38 loc) · 934 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
{
"name": "my-project",
"description": "This project does nothing useful. Yet.",
"repository": "https://github.com/7ws/django-boilerplate/",
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/ruby"
}
],
"addons": [
"heroku-postgresql",
"sendgrid"
],
"env": {
"ENVIRONMENT": {
"description": "The environment configuration to use (see `settings/`).",
"value": "Development"
},
"DJANGO_DEBUG": {
"description": "Debug mode for the Django app (overrides environment settings).",
"value": "True"
},
"DJANGO_SECRET_KEY": {
"description": "A secret key for salting security stuff.",
"generator": "secret"
},
"EMAIL_URL": {
"description": "URL with email connection parameters.",
"value": "smtp://[email protected]:[email protected]:465/?ssl=True"
}
}
}