M0
Some checks failed
CI / validate (push) Has been cancelled

This commit is contained in:
2026-03-22 23:33:24 -05:00
parent 27dac51b5c
commit 177be6332b
47 changed files with 7287 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# Contribution Guide
## Setup
1. Install Node.js 20+.
2. Run `npm install`.
3. Run `npm run dev`.
4. Run `npm run docker-up` to verify the single-container path.
## Expectations
- Keep client gameplay code under `client/src/game`.
- Keep API and persistence code under `server/src`.
- Keep production assumptions aligned with the single-container deployment model.
- Prefer small milestone-focused changesets.
## CI Baseline
The repo includes a first-pass workflow that runs install, lint, test, build, and Docker build checks on pushes and pull requests.