-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
46 lines (46 loc) · 980 Bytes
/
Copy pathconfig.json
File metadata and controls
46 lines (46 loc) · 980 Bytes
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
{
"development": {
"server": {
"host": "localhost",
"port": 8080
},
"database": {
"type": "sqlite",
"name": "dev_app.db"
},
"logging": {
"level": "debug",
"file": "dev_app.log"
}
},
"testing": {
"server": {
"host": "localhost",
"port": 8081
},
"database": {
"type": "sqlite",
"name": "test_app.db"
},
"logging": {
"level": "info",
"file": "test_app.log"
}
},
"production": {
"server": {
"host": "0.0.0.0",
"port": 80
},
"database": {
"type": "mysql",
"name": "prod_app",
"user": "admin",
"password": "secret"
},
"logging": {
"level": "error",
"file": "prod_app.log"
}
}
}