-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-parameters.json
83 lines (83 loc) · 2.08 KB
/
environment-parameters.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
[
{
"id":"POSTGRES_DATABASE_USER",
"display_name":"Name of the postgres user",
"type":"text",
"default_value":"admin",
"description":"The User of the postgres DB created for NOCODB",
"min_length": "1",
"max_length": "128"
},
{
"id":"POSTGRES_DATABASE_PASSWORD",
"display_name":"Password of postgres user",
"type":"password",
"default_value":"changethispasswordinproductionenvironments",
"description":"The Password of the postgres DB created for NOCODB",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_FROM",
"display_name":"Email sender address",
"type":"text",
"default_value":"[email protected]",
"description":"Email sender address",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_HOST",
"display_name":"SMTP host",
"type":"text",
"default_value":"smtp.your-smtp-host.org",
"description":"SMTP host value",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_PORT",
"display_name":"SMTP port",
"type":"text",
"default_value":"587",
"description":"SMTP port",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_USERNAME",
"display_name":"SMTP username for authentication",
"type":"text",
"default_value":"[email protected]",
"description":"SMTP username for authentication",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_PASSWORD",
"display_name":"SMTP password for authentication",
"type":"password",
"default_value":"changethissmtppasswordinproductionenvironments",
"description":"SMTP password for authentication",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_SECURE",
"display_name":"SMTP Secure",
"type":"text",
"default_value":"true",
"description":"To enable secure set as true any other value treated as false",
"min_length": "1",
"max_length": "128"
},
{
"id":"NC_SMTP_IGNORE_TLS",
"display_name":"Ignore TLS",
"type":"text",
"default_value":"true",
"description":"To ignore tls set as true any other value treated as false.",
"min_length": "1",
"max_length": "128"
}
]