# Used by docker-compose.yml to provision the local Postgres container. # Pick your own values — do not reuse these across environments, and never # commit the real .env (it's git-ignored). POSTGRES_USER=changeme POSTGRES_PASSWORD=changeme POSTGRES_DB=batchcooking POSTGRES_PORT=5432 # Used by docker-compose.yml's "app" service (Docker-only — the native # `pnpm dev:api` workflow reads apps/api/.env instead, set both when using # both workflows). Required, no default on purpose — generate your own. JWT_SECRET=changeme-generate-a-real-random-secret-at-least-32-chars # Optional — host port for the Docker review stack's single app container # (docker-compose.yml), serving both the API and the built frontend. # APP_PORT=3000