-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
52 lines (52 loc) · 1.25 KB
/
app.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "koil Example",
"description": "A Spring-based SaaS template.",
"repository": "https://github.com/HappyValleyIO/koil",
"keywords": [
"spring",
"java"
],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
},
{
"plan": "bucketeer:hobbyist"
}
],
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"REMEMBER_ME_KEY": {
"description": "Remember me token key.",
"value": "sometoken"
},
"ADMIN_USER_EMAIL": {
"description": "Email to use for the default admin user",
"value": "admin@getkoil.dev"
},
"APP_BASE_URL": {
"description": "Base url to use for any email links (e.g. password reset)",
"value": "https://koil-sample.herokuapp.com"
},
"ADMIN_USER_PASSWORD": {
"description": "Password for the default administrative account",
"value": "SecurePass123!",
"PROMETHEUS_PASSWORD": {
"description": "Password user by prometheus for http basic auth when scraping",
"value": "prometheus"
}
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}