Systemd services: gateway, sidecar, UI survive reboots

- lakehouse.service: release gateway on :3100, auto-restart
- lakehouse-sidecar.service: Python FastAPI on :3200, auto-restart
- lakehouse-ui.service: WASM file server on :3300, auto-restart
- All enabled at boot (multi-user.target)
- scripts/serve_ui.py for systemd-compatible file serving

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
root 2026-03-27 22:06:28 -05:00
parent fdb2e9cda8
commit 037555802e

3
scripts/serve_ui.py Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env python3
from http.server import HTTPServer, SimpleHTTPRequestHandler
HTTPServer(("0.0.0.0", 3300), SimpleHTTPRequestHandler).serve_forever()