-
Notifications
You must be signed in to change notification settings - Fork 88
/
config.json
49 lines (44 loc) · 1.02 KB
/
config.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
{
"cors": {
"enabled": false
},
"cron": {
"reset": "0 * * * *"
},
"direct": {
"rootNamespace": "Server",
"apiName": "API",
"apiUrl": "/api",
"classRouteUrl": "/api",
"classPath": "api",
"server": "localhost",
"port": "3000",
"protocol": "http",
"timeout": 30000,
"cacheAPI": false,
"relativeUrl": true,
"appendRequestResponseObjects": true,
"enableProcessors": false,
"enableMetadata": true,
"responseHelper": true
},
"database": {
"dialect": "sqlite",
"storage": ".//data.db",
"logging": false,
"define": {
"createdAt": "created",
"updatedAt": "updated",
"deletedAt": "deleted",
"underscored": true
}
},
"session": {
"secret": "62P59nE68F38q0q2wvHho58oR38aY7U9",
"duration": 86400,
"readonly": false
},
"client": {
"path": "../client"
}
}