# 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 # Optional — only set this to false if THIS deployment is served over # plain HTTP (no TLS in front of it). Left unset, the session cookie # requires HTTPS (Secure attribute) as it should for a real deployment; # over plain HTTP a Secure cookie is silently never sent back by the # browser, so login "succeeds" but every subsequent request 401s. # COOKIE_SECURE=false