-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.json
More file actions
48 lines (48 loc) · 1.03 KB
/
Copy pathexample.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "Test Configuration",
"version": "1.0.0",
"description": "Example configuration file",
"database": {
"host": "localhost",
"port": 5432,
"name": "testdb",
"credentials": {
"username": "user",
"password": "password"
},
"pool": {
"min": 5,
"max": 20,
"idleTimeoutMillis": 30000
}
},
"server": {
"port": 3000,
"host": "0.0.0.0",
"cors": {
"enabled": true,
"origins": [
"http://localhost:3000",
"https://example.com"
]
}
},
"logging": {
"level": "info",
"format": "json",
"outputs": [
"console",
"file"
],
"file": {
"path": "/var/log/app.log",
"maxSize": "10m",
"maxFiles": 5
}
},
"features": {
"authentication": true,
"caching": true,
"monitoring": true
}
}