This project uses pnpm as the package manager. Always use pnpm commands instead of npm or yarn.
pnpm installpnpm run <script>pnpm add <package>The web and service applications support hot reloading for most changes:
apps/web): Runs with pnpm run dev and hot reloads on code changes.apps/service): Runs with pnpm run service and hot reloads on code changes.Do not frequently stop and restart these servers unless necessary (e.g., for configuration changes or dependency updates). Let the hot reloading handle code updates during development.
apps/web (Next.js), apps/service (NestJS)packages/legacy/pnpm run dev (runs both web and service)pnpm run web or pnpm run servicedocker-compose.yml for containerized setup