Files
stellar/docs/architecture.md
jason 1a9209431b
Some checks failed
CI / validate (push) Has been cancelled
m2
2026-03-23 00:06:01 -05:00

15 lines
634 B
Markdown

# Architecture
## Current Baseline
- `client/` hosts the React application and game shell.
- `server/` hosts the Express API, production static asset serving, and future persistence services.
- `Dockerfile` and `compose.yml` define the single-container production build and local compose entrypoint.
## Immediate Direction
- M0 keeps the game scene intentionally simple.
- M1 replaces the placeholder canvas renderer with a Matter.js-driven absorber loop.
- Persistence is currently in-memory and will move to SQLite during M3.
- Production packaging now uses one container that serves both the API and built client from Express.