-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-environment-variables.json
More file actions
70 lines (70 loc) · 1.48 KB
/
custom-environment-variables.json
File metadata and controls
70 lines (70 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"protocol": "FORMIO_PROTOCOL",
"appHost": "FORMIO_HOST",
"appPort": "FORMIO_PORT",
"mongo": "MONGO",
"mongoSecret": "MONGO_SECRET",
"jwt": {
"secret": "JWT_SECRET",
"expireTime": "JWT_EXPIRE_TIME"
},
"email": {
"type": "EMAIL_TYPE",
"username": "EMAIL_USER",
"password": "EMAIL_PASS",
"apiKey": "EMAIL_KEY"
},
"settings": {
"office365": {
"tenant": "O365_TENANT",
"clientId": "O365_CLIENT_ID",
"email": "O365_EMAIL",
"cert": "O365_CERT",
"thumbprint": "O365_THUMBPRINT"
},
"database": {
"mysql": {
"host": "MYSQL_HOST",
"port": "MYSQL_PORT",
"database": "MYSQL_DBNAME",
"user": "MYSQL_USER",
"password": "MYSQL_PASS"
},
"mssql": {
"host": "MSSQL_HOST",
"port": "MSSQL_PORT",
"database": "MSSQL_DBNAME",
"user": "MSSQL_USER",
"password": "MSSQL_PASS"
}
},
"email": {
"gmail": {
"auth": {
"user": "GMAIL_USER",
"pass": "GMAIL_PASS"
}
},
"smtp": {
"host": "SMTP_HOST",
"ssl": "SMTP_SSL",
"port": "SMTP_PORT",
"auth": {
"user": "SMTP_USER",
"pass": "SMTP_PASS"
}
}
}
},
"project": {
"template": "PROJECT_TEMPLATE",
"user": {
"form": "USER_FORM",
"loginForm": "USER_LOGIN_FORM"
},
"root": {
"email": "ROOT_EMAIL",
"password": "ROOT_PASS"
}
}
}