- 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>
4 lines
156 B
Python
4 lines
156 B
Python
#!/usr/bin/env python3
|
|
from http.server import HTTPServer, SimpleHTTPRequestHandler
|
|
HTTPServer(("0.0.0.0", 3300), SimpleHTTPRequestHandler).serve_forever()
|