NODE_ENV=development PORT=3000 # Match whatever you set in the root .env (POSTGRES_USER/PASSWORD/DB) — # do not commit the real value. DATABASE_URL="postgresql://changeme:changeme@localhost:5432/batchcooking?schema=public" # Required, no default on purpose — generate your own, e.g.: # node -e "console.log(require('crypto').randomBytes(48).toString('hex'))" JWT_SECRET=changeme-generate-a-real-random-secret-at-least-32-chars # Optional — defaults shown (see src/config/env.ts) # JWT_EXPIRES_IN=7d # AUTH_COOKIE_NAME=session # CORS_ORIGIN=http://localhost:5173 # Only needed if you're running services/tech-step-llm-worker locally — # every /internal/tech-steps/* request is rejected outright while unset. # Generate your own the same way as JWT_SECRET above; must match the # worker's own INTERNAL_WORKER_SECRET. # INTERNAL_WORKER_SECRET=changeme-generate-a-real-random-secret-at-least-32-chars