Nuit et Jour is our stack made for the Nuit de l'info
- Monorepo Structure: Organized as a workspaces-based monorepo with Turbo for build orchestration
- Modern Stack:
# Install dependencies for all workspaces
bun install# Run all workspaces in development mode with Turbo
bun run dev
# Or run individual workspaces directly
bun run dev:client # Run the Vite dev server for React
bun run dev:server # Run the Hono backend# Build all workspaces with Turbo
bun run build
# Or build individual workspaces directly
bun run build:client # Build the React frontend
bun run build:server # Build the Hono backend# Lint all workspaces
bun run lint
# Type check all workspaces
bun run type-check
# Run tests across all workspaces
bun run test