-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
39 lines (39 loc) · 958 Bytes
/
config.example.json
File metadata and controls
39 lines (39 loc) · 958 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
{
"language": "en",
"email_notifications": false,
"email_address": "picobaz3@gmail.com",
"smtp_server": "smtp.gmail.com",
"smtp_port": 587,
"smtp_username": "picobaz3@gmail.com",
"smtp_password": "pass",
"enabled_error_types": [
"SyntaxError",
"TypeError",
"ValueError",
"AttributeError",
"NameError",
"ImportError",
"IndexError",
"KeyError",
"FileNotFoundError",
"PermissionError",
"RuntimeError",
"MemoryError",
"RecursionError",
"ZeroDivisionError",
"404Error",
"500Error",
"403Error",
"DatabaseError",
"ConnectionError",
"TimeoutError"
],
"log_retention_days": 30,
"max_logs_per_file": 10000,
"monitoring_interval": 2,
"auto_start_monitoring": false,
"default_log_paths": [
"/var/log/app.log",
"/var/log/error.log"
]
}