-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
95 lines (95 loc) · 2.2 KB
/
Copy pathconfig.example.json
File metadata and controls
95 lines (95 loc) · 2.2 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"settings": {
"port": 5000,
"healthCheckIntervalMs": 15000,
"healthCheckTimeoutMs": 3000
},
"sharedFolder": {
"enabled": true,
"path": "./shared",
"allowUpload": true,
"allowDelete": false
},
"groups": [
{ "id": "ai", "name": "AI Tools", "color": "#7c5cff" },
{ "id": "media", "name": "Media", "color": "#ff8a5c" },
{ "id": "network", "name": "Network", "color": "#4cc9f0" },
{ "id": "games", "name": "Games", "color": "#5cff8a" }
],
"services": [
{
"id": "ollama",
"name": "Ollama",
"url": "http://localhost:11434",
"group": "ai",
"icon": "🦙",
"description": "Local LLM runtime",
"healthCheck": true,
"healthCheckPath": "/",
"tags": ["llm", "api"],
"pinned": false
},
{
"id": "openwebui",
"name": "Open WebUI",
"url": "http://localhost:3000",
"group": "ai",
"icon": "💬",
"description": "Chat interface for local LLMs",
"healthCheck": true,
"healthCheckPath": "/",
"tags": ["chat", "ui"],
"pinned": false
},
{
"id": "comfyui",
"name": "ComfyUI",
"url": "http://localhost:8188",
"group": "ai",
"icon": "🎨",
"description": "Node-based image generation",
"healthCheck": true,
"healthCheckPath": "/",
"tags": ["image-gen", "ui"],
"pinned": false
},
{
"id": "jellyfin",
"name": "Jellyfin",
"url": "http://localhost:8096",
"group": "media",
"icon": "🎬",
"description": "Media server",
"healthCheck": true,
"healthCheckPath": "/health",
"tags": ["media", "server"],
"pinned": false
}
],
"connections": [
{ "id": "conn-1", "from": "openwebui", "to": "ollama", "label": "LLM backend", "type": "depends-on" }
],
"chatChannels": [
{ "id": "general", "name": "General" }
],
"alerts": {
"enabled": false,
"webhookUrl": "",
"format": "generic"
},
"auth": {
"enabled": false,
"salt": "",
"hash": "",
"sessionDays": 30
},
"security": {
"ipAllowlist": {
"enabled": false,
"subnets": []
},
"serviceControl": {
"enabled": false
}
}
}