# 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 "api" 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 ports for the Docker review stack (docker-compose.yml) # API_PORT=3000 # WEB_PORT=8080