-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
39 lines (39 loc) · 906 Bytes
/
config.example.json
File metadata and controls
39 lines (39 loc) · 906 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
{
"site": {
"name": "developer.krd Status",
"description": "Real-time status monitoring for all developer.krd services",
"url": "https://status.developer.krd",
"logo": "/logo.png",
"favicon": "/favicon.ico",
"brand_color": "#6C63FF",
"brand_color_dark": "#4A45B0"
},
"settings": {
"check_interval_minutes": 5,
"history_days": 90,
"timeout_seconds": 10,
"retry_count": 2,
"timezone": "Asia/Baghdad"
},
"services": [
{
"name": "Main Website",
"url": "https://example.com",
"description": "Main website",
"category": "Websites",
"expected_status": 200
},
{
"name": "API",
"url": "https://api.example.com",
"description": "REST API",
"category": "Services",
"expected_status": 200
}
],
"notifications": {
"enabled": false,
"webhook_url": "",
"email": ""
}
}