-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
38 lines (38 loc) · 975 Bytes
/
app.json
File metadata and controls
38 lines (38 loc) · 975 Bytes
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": "pichub",
"description": "The project intends to ease hosting and access to personal emojis, stickers and animated GIFs.",
"repository": "https://github.com/7ws/pichub",
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"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://user@domain.com:pass@smtp.example.com:465/?ssl=True"
}
}
}