-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
50 lines (50 loc) · 981 Bytes
/
Copy pathconfig.json.example
File metadata and controls
50 lines (50 loc) · 981 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
47
48
49
50
{
"api": {
"port": 3000,
"host": "0.0.0.0",
"cors": {
"enabled": true,
"origin": "*"
},
"timeout": 30000
},
"python": {
"executable": "python3",
"maxConcurrentProcesses": 4,
"timeout": 30000,
"maxQueueSize": 1000
},
"paths": {
"output": "./api_output",
"schedules": "./api_output/schedules",
"exports": "./api_output/exports",
"logs": "./logs"
},
"logging": {
"level": "info",
"format": "json",
"file": "./logs/scheduleflow.log"
},
"features": {
"autoFill": true,
"cooldownEnabled": true,
"cooldownHours": 48,
"duplicateDetection": true,
"conflictDetection": true
},
"production": {
"enabled": false,
"database": {
"host": "localhost",
"port": 5432,
"name": "scheduleflow",
"user": "scheduleflow",
"password": "changeme"
},
"redis": {
"enabled": false,
"host": "localhost",
"port": 6379
}
}
}