-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
55 lines (55 loc) · 1.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
{
"name": "Reki",
"description": "Leirirekisteri",
"repository": "https://github.com/partio-scout/reki",
"env": {
"COOKIE_SECRET": {
"description": "A secret string for securing session cookies",
"generator": "secret"
},
"KUKSA_API_ENDPOINT": {
"description": "The url at which the kuksa api lives",
"value": "https://kuksa.partio.fi/leirirekisteri_rajapinta/api"
},
"KUKSA_API_EVENTID": {
"description": "The event id of your event in kuksa",
"required": false
},
"KUKSA_API_USERNAME": {
"description": "The username of the kuksa api",
"required": false
},
"KUKSA_API_PASSWORD": {
"description": "The password to the kuksa api",
"required": false
},
"ENABLE_OFFLINE_LOGIN": {
"description": "Set this to true if you need to enable logging in without partioid",
"value": "false"
},
"PARTIOID_USE_PRODUCTION": {
"description": "Set this to true to enable main partioid. Otherwise the partioid test environment will be used",
"value": "true"
},
"REKI_BASE_URL": {
"description": "Set this to the url that people will be accessing your Reki instance.",
"required": true
},
"PGSSLMODE": {
"description": "Instructs that the connection to the database should be secure",
"value": "require"
}
},
"formation": [
{
"type": "web",
"quantity": 2,
"size": "standard-1x"
}
],
"addons": [
"heroku-postgresql:standard-0",
"heroku-redis:hobby-dev",
"proximo:development"
]
}