This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
88 lines (87 loc) · 2.46 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
{
"name": "KlustAIR",
"description": "Frontend to Kubernetes Trivy and Kubeaudit scanner",
"keywords": [
"security",
"kubernetes"
],
"website": "https://www.klustair.com/",
"repository": "https://github.com/klustair/klustair-frontend",
"logo": "https://raw.githubusercontent.com/mms-gianni/klustair-frontend/master/docs/img/klustair.png",
"success_url": "/login",
"env": {
"APP_DEBUG": {
"description": "Enables some debugging features and the Laravel debugbar",
"value": "false"
},
"APP_ENV": {
"description": "Laravel App Env",
"value": "local"
},
"APP_NAME": {
"description": "Application name",
"value": "Klustair"
},
"APP_URL": {
"description": "Application URL ",
"value": "https://YOURAPPNAME.herokuapp.com"
},
"KLUSTAIR_ADMIN_USER": {
"description": "Initial admin user",
"value": "Admin"
},
"KLUSTAIR_ADMIN_EMAIL": {
"description": "Laravel App Env",
"value": "[email protected]"
},
"KLUSTAIR_ADMIN_PASS": {
"description": "The Admin Password",
"generator": "secret"
},
"APP_KEY": {
"description": "Random 32 Characters (https://random.justyy.workers.dev/api/random/?cached&n=32&x=7) "
},
"AUTH": {
"description": "Enable authentication",
"value": "false"
},
"AUTH_REGISTER": {
"description": "Enable registration",
"value": "true"
},
"AUTH_RESET": {
"description": "Enable password reset",
"value": "false"
},
"AUTH_VERIFY": {
"description": "Enable verfication (experimental)",
"value": "false"
},
"DB_CONNECTION": {
"description": "DB connection type",
"value": "pgsql"
},
"LDAP": {
"description": "Disable LDAP Authentication (visit github README for instructions)",
"value": "false"
},
"LOG_CHANNEL": {
"description": "Laravel log channel",
"value": "stderr"
},
"SANCTUM_STATEFUL_DOMAINS": {
"description": "The domain you run the frontend",
"value": "YOURAPPNAME.herokuapp.com"
},
"SESSION_DRIVER": {
"description": "Laravel Sessionsdriver",
"value": "file"
}
},
"addons": ["heroku-postgresql:hobby-dev"],
"buildpacks": [
{
"url": "heroku/php"
}
]
}