-
Notifications
You must be signed in to change notification settings - Fork 0
/
container-env.json
44 lines (44 loc) · 1.14 KB
/
container-env.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
{
"container": {
"name": "agtiv",
"scope": "hrueger"
},
"variables": [
{
"name": "DB_NAME",
"description": "The name of the database",
"default": "agtiv",
"type": "string"
},
{
"name": "DB_USER",
"description": "The database user",
"default": "root",
"type": "string"
},
{
"name": "DB_PASSWORD",
"description": "The database password",
"default": "",
"type": "string"
},
{
"name": "DB_PORT",
"description": "The port of the database server",
"default": 3306,
"type": "number"
},
{
"name": "DB_HOST",
"description": "The database server hostname or ip address",
"default": "localhost",
"type": "string"
},
{
"name": "JWT_SECRET",
"description": "The JWT secret, just choose a random string",
"default": "h8fnilyshlyisudlasida",
"type": "string"
}
]
}