forked from Sliverkiss/workbuddy2api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
69 lines (69 loc) · 1.42 KB
/
Copy pathconfig.example.json
File metadata and controls
69 lines (69 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"listen": ":7863",
"api_key": "test_key",
"auth_dir": "./auths",
"state_file": "./data/state.json",
"server": {
"max_body_mb": 8
},
"cooldown": {
"soft_rate": "600s",
"soft_rate_max": "2h"
},
"schedule": {
"checkin_hours": [9, 21],
"travel_hours": [9, 21],
"activity_hours": [10],
"keepalive_hours": [22],
"school_hours": [12],
"cat_hours": [1],
"checkin_enabled": true,
"travel_enabled": true,
"activity_enabled": true,
"keepalive_enabled": true,
"school_enabled": true,
"cat_enabled": true
},
"global": {
"enabled": true,
"chat_base": "",
"billing_base": ""
},
"upstream": {
"timeout_seconds": 120,
"header_timeout_seconds": 120,
"idle_timeout_seconds": 300,
"user_agent": "",
"client_version": "",
"cli_version": "",
"device_token": "",
"device_token_file": "",
"client_name": "WorkBuddy",
"passthrough_ip": false
},
"features": {
"sanitize_blacklist_fingerprints": true
},
"prompt": {
"mode": "passthrough",
"file": ""
},
"upstash": {
"url": "",
"token": ""
},
"pool": {
"max_in_flight": 3,
"breaker_threshold": 3,
"breaker_cooldown": "30m",
"breaker_cooldown_max": "6h",
"idle_weight_per_hour": 0.5,
"idle_weight_max": 5.0,
"expiring_soon": "168h"
},
"session_sticky": {
"enabled": true,
"ttl": "30m",
"gc_interval": "5m"
}
}