forked from crunchbutton/crunchbutton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
51 lines (51 loc) · 1.11 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
{
"name": "Crunchbutton",
"description": "crunchbutton and cockpit websites",
"repository": "https://github.com/youbeo/crunchbutton",
"addons": [
"jawsdb-maria:leopard"
],
"env": {
"DATABASE_URL": {
"description": "Database to use. Set to null to use jawsdb",
"required": true
},
"THEME": {
"description": "seven (crunchbutton), or cockpit2 (cockpit)",
"required": true
},
"USE_ENCRYPTION_KEY": {
"description": "set to true to use the generated key",
"required": false
},
"ENCRYPTION_KEY": {
"description": "Encryption key for the db",
"generator": "secret"
},
"ADMIN_NAME": {
"description": "Name of the default admin",
"required": false
},
"ADMIN_LOGIN": {
"description": "Login of the default admin",
"required": false
},
"ADMIN_PASSWORD": {
"description": "Password of default admin",
"required": false
},
"ADMIN_PHONE": {
"description": "Phone # of the default admin for notifications",
"required": false
}
},
"scripts": {
"postdeploy": "php cli/install.php"
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
}
}