-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.example.json
More file actions
64 lines (64 loc) · 1.52 KB
/
settings.example.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"servers": [
{
"id": "homelab",
"name": "Homelab",
"host": "100.64.0.1",
"user": "myuser",
"port": 22
},
{
"id": "vps-without-ssh",
"name": "VPS (manual mode)",
"host": "203.0.113.10",
"manualServices": [
{
"name": "My App",
"url": "http://203.0.113.10:3000",
"category": "Projetos",
"color": "#F2D4D7",
"icon": "M"
}
]
},
{
"id": "tinyserver-ipv6",
"name": "Tiny Server (IPv6)",
"host": "2804:54:c100:1::200",
"user": "lin",
"port": 22
}
],
"activeServerId": "homelab",
"defaultSshUser": "myuser",
"sshUserCandidates": ["root", "ubuntu", "debian", "fedora", "ec2-user", "admin", "pi", "deploy", "myuser"],
"discoveryInterval": 300000,
"refreshInterval": 30000,
"showCountBadge": true,
"overrides": {
"my-container-name": {
"name": "Pretty Name",
"category": "Projetos",
"color": "#F59E0B",
"icon": "P"
},
"noise-i-dont-want": {
"hidden": true
}
},
"categoryRules": [
{ "match": "jellyfin|sonarr|radarr|bazarr|prowlarr|jellyseerr", "category": "Media" },
{ "match": "nextcloud|immich", "category": "Cloud" },
{ "match": "coolify|dashy|dockge|portainer", "category": "Dev" }
],
"iconMap": {
"jellyfin": "icons/jellyfin.png",
"nextcloud": "icons/nextcloud.png"
},
"categoryColors": {
"Media": "#7B2CBF",
"Cloud": "#0082C9",
"Dev": "#8B5CF6",
"Outros": "#94A3B8"
}
}