feat(homelable): add new CT script for Homelable

Interactive homelab network visualization and monitoring tool.
Backend: Python 3.13 (FastAPI/uvicorn), Frontend: Node.js 20 (Vite/React)
Caddy reverse proxy on port 3000, SQLite database, nmap network scanning.
Default credentials: admin/admin
This commit is contained in:
CanbiZ (MickLesk)
2026-03-30 08:56:22 +02:00
parent 7b55c3f637
commit ac38d4134e
3 changed files with 219 additions and 0 deletions

38
json/homelable.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "Homelable",
"slug": "homelable",
"categories": [9],
"date_created": "2026-03-30",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3000,
"documentation": "https://github.com/Pouzor/homelable/blob/main/INSTALLATION.md",
"website": "https://github.com/Pouzor/homelable",
"logo": "https://raw.githubusercontent.com/Pouzor/homelable/main/frontend/public/logo.svg",
"config_path": "/opt/homelable/backend/.env",
"description": "Homelable is an interactive homelab network visualization and monitoring tool. Map your infrastructure on a drag-and-drop canvas with live node status checks (ping, HTTP, TCP, SSH), network scanning via nmap, and hardware spec tracking.",
"install_methods": [
{
"type": "default",
"script": "ct/homelable.sh",
"resources": {
"cpu": 2,
"ram": 2048,
"hdd": 8,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": "admin",
"password": "admin"
},
"notes": [
{
"text": "Change the default password after first login!",
"type": "warning"
}
]
}