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:
parent
fdb2e9cda8
commit
037555802e
3
scripts/serve_ui.py
Normal file
3
scripts/serve_ui.py
Normal file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env python3
|
||||
from http.server import HTTPServer, SimpleHTTPRequestHandler
|
||||
HTTPServer(("0.0.0.0", 3300), SimpleHTTPRequestHandler).serve_forever()
|
||||
Loading…
x
Reference in New Issue
Block a user