forked from CodingPirates/forenings_medlemmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
92 lines (92 loc) · 2.56 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Coding Pirates CRM",
"description": "The member system for coding pirates",
"website": "https://codingpirates.dk",
"stack": "container",
"buildpacks": [{ "url": "heroku/python" }],
"env": {
"MODE": {
"required": true,
"description": "The mode the system is running in",
"value": "staging"
},
"SENTRY_DSN": {
"required": true,
"description": "SENTRY DSN",
"value": "not set"
},
"EMAIL_URL": {
"required": true,
"description": "EMAIL URL",
"value": "console:"
},
"PAYMENT_ID_PREFIX": {
"required": true,
"description": "The prefix for quickpay id's 1-3 chars",
"value": "rev"
},
"ADMINS": {
"required": true,
"description": "Admins that get email on crashes",
"value": "[('dit navn', '[email protected]')]"
},
"FORCE_HTTPS": {
"required": true,
"description": "Wheter or not https is enforced",
"value": "True"
},
"CORS_LIST": {
"required": true,
"description": "The hosts that are allowed to acces cros origin",
"value": "https://members.codingpirates.dk"
},
"SECRET_KEY": {
"required": true,
"generator": "secret",
"description": "Secret key for django"
},
"BASE_URL": {
"required": true,
"description": "The URL it should be served on (deprecated)",
"value": "members.codingpirates.dk"
},
"ALLOWED_HOSTS": {
"required": true,
"description": "Which urls that can host the service",
"value": "*"
},
"DEBUG": {
"required": true,
"description": "Wheter the service will run in debug mode",
"value": "False"
},
"QUICKPAY_API_KEY": {
"required": true,
"description": "The key for quickpay - test ",
"value": "ec55645b143824405a140943680e680f99b6c6e02e309b057d238ed2288d90ad"
},
"QUICKPAY_PRIVATE_KEY": {
"required": true,
"description": "The key for quickpay - test",
"value": "122295f79d2dc6fc49703ccb22acb01adc44924d8a0457f9ff122620368e20a0"
},
"SERVER_COMMAND": {
"required": true,
"description": "The Service that starts the app",
"value": "gunicorn forenings_medlemmer.wsgi:application --bind"
}
},
"addons": ["heroku-postgresql:essential-mini"],
"environments": {
"test": {
"env": {
"DEBUG": "True",
"SERVER_COMMAND": "gunicorn forenings_medlemmer.wsgi:application --bind"
},
"addons": ["heroku-postgresql:in-dyno"],
"scripts": {
"test": "./manage.py test"
}
}
}
}