-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.default.json
50 lines (50 loc) · 1.06 KB
/
config.default.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
{
"default": {
"language": "en"
},
"http": {
"port": 3000
},
"database": {
"user": "ubuntu",
"password": "",
"host": "localhost",
"port": 5432,
"dbname": "circle_test"
},
"bag":{
"user": "ubuntu",
"password": "",
"host": "localhost",
"port": 5432,
"dbname": "circle_test"
},
"infrastructure":{
"user": "ubuntu",
"password": "",
"host": "localhost",
"port": 5432,
"dbname": "circle_test"
},
"media": {
"path" : "/real/path/to/media",
"symbols": "/real/path/to/symbols"
},
"support": {
"sendto": "[email protected]",
"from": "[email protected]",
"ccsender": true,
"smtp":{
"host": "smtphost",
"secureConnection": true,
"port": 465,
"tls": {
"rejectUnauthorized": false
},
"auth": {
"user": "username",
"pass": "password"
}
}
}
}