Frontend
The Lunatrix landing and future product surfaces run independently and consume APIs through the gateway.
127.0.0.1:4173PLATFORM
Separate the concerns. Keep the signal flow clean.
The frontend runs on its own port, the backend gateway stays focused on API orchestration, and the model service handles inference independently. Each layer can evolve without pulling the others into the same runtime.
The product shell, API layer, and ML runtime communicate over HTTP instead of sharing process state.
The Lunatrix landing and future product surfaces run independently and consume APIs through the gateway.
127.0.0.1:4173The NestJS layer proxies public routes, keeps integrations stable, and isolates the frontend from model details.
127.0.0.1:8000The Python engine owns live inference, training outputs, and signal publication without needing the UI to be present.
127.0.0.1:8100“Lunatrix is built so the signal intelligence can outlive the landing page. The frontend is only one consumer.”
The standalone frontend proxies API calls through the gateway rather than reaching into the model directly.
The backend keeps a stable contract for signal consumers while the Python service can continue evolving underneath.
Fresh signals, artifacts, and live inference remain the model service’s responsibility, not the web shell’s.