This monorepo contains both the backend API and frontend applications for the Statox platform.
back/- API backend (formerly api.statox.fr)front/- Frontend applications (formerly apps.statox.fr)
Each directory maintains its own package.json and can be developed independently:
cd back
npm install
npm run watch # TypeScript watcher
npm run serve # Start server on port 3000
npm run tests # Run testsSee back/CLAUDE.md and back/DEV.md for detailed backend documentation.
cd front
npm install
npm run dev # Start dev server
npm run build # Build for productionSee front/CLAUDE.md for detailed frontend documentation.
Git hooks are managed at the monorepo root level:
./githooks/setup.sh # Install git hooksThis monorepo was created by merging the git histories of two previously independent repositories:
- Backend: git@github.com:statox/api.statox.fr.git
- Frontend: git@github.com:statox/apps.statox.fr.git
All commit history from both repositories has been preserved. You can view the full history of any file:
git log back/package.json # Shows full backend history
git log front/package.json # Shows full frontend history