-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.26 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.26 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Dorm Portal",
"description": "",
"repository": "https://github.com/coretabs/dorm-portal",
"keywords": [
"django",
"vue",
"vuejs",
"template",
"django rest framework"
],
"env": {
"HOST_ENV": {
"description": "Set Django Settings to Production",
"value": "production"
},
"DEBUG": {
"description": "Debug django settings",
"value": "false"
},
"SECRET_KEY": {
"description": "Your Django Secret Key",
"value": "123456"
},
"ALLOWED_HOSTS": {
"description": "Allowing Your app URL",
"value": "YOUR_APP_NAME.herokuapp.com;www.example.com;.example.com"
},
"BASE_URL": {
"description": "Base url for emails and photos",
"value": "https://www.example.com"
},
"COOKIE_DOMAINS": {
"description": "Domain to share cookies with",
"value": "https://www.example.com=.example.com;https://example.com=.example.com"
},
"DATABASE_URL": {
"description": "Database url",
"value": "postgres://user:password@db/table"
},
"LANGUAGES": {
"description": "Languages",
"value": "en=English;tr=Türkçe"
},
"DEFAULT_FROM_EMAIL": {
"description": "Email sender that shows when sending emails to users",
"value": "John from example.com <no-reply@example.com>"
},
"EMAIL_HOST": {
"description": "Email host",
"value": "smtp.mailgun.org"
},
"EMAIL_HOST_USER": {
"description": "Email user",
"value": "no-reply@example.com"
},
"EMAIL_HOST_PASSWORD": {
"description": "Email passwrod",
"value": "123456"
},
"IS_ALWAYS_REVIEWABLE": {
"description": "Reservations will always be reviewable if true",
"value": "false"
}
},
"engines": {
"yarn": "1.4.0",
"npm": "6.2.0"
},
"addons": [],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}