Home
Features¶
-
:material-view-dashboard: Service Dashboard
Centralized hub for all your self-hosted applications organized into sections with custom icons and accent colors.
-
:material-heart-pulse: Real-time Health Checks
Background HTTP/HTTPS status monitoring pushed to the UI over WebSocket — no polling from the browser.
-
:material-magnify: Search & Filter
Full-text search across service titles, descriptions, and tags. Press
/orCtrl+Kto open instantly. -
:material-theme-light-dark: Light / Dark Theme
Automatic or explicit theme selection. Each service card can have its own hex accent color.
-
:material-reload: Live Config Reload
Reload configuration from disk without restarting the process via
POST /api/reload. -
:material-feather: Minimal Footprint
Single binary, ~1,000 lines of code, two external Go dependencies. Embeds the web UI — no separate assets to manage.
Quick start¶
git clone https://github.com/haydenk/homestead.git
cd homestead
go build -o homestead .
cp config.example.toml config.toml
$EDITOR config.toml
./homestead -config config.toml
Open http://127.0.0.1:8080 in your browser.
Preview¶
| Dark | Light |
|---|---|
![]() |
![]() |
Tech stack¶
| Layer | Technology |
|---|---|
| Backend | Go standard library + BurntSushi/toml + gorilla/websocket |
| Frontend | HTML5, vanilla JavaScript (ES2020+), CSS3 custom properties |
| Packaging | Docker (Alpine), systemd, nfpm (deb/rpm/apk) |

