.env.example 563 B

1234567891011121314151617
  1. # Local dev / pnpm seed on your machine: use 127.0.0.1 (not "postgres").
  2. # Inside Docker Compose network only: host can be the service name "postgres".
  3. DATABASE_URL=postgresql://postgres:password123@127.0.0.1:5432/postgres
  4. PAYLOAD_SECRET=your_payload_secret
  5. NODE_ENV=development
  6. # Contact endpoint configuration
  7. CONTACT_TO_EMAIL=team@example.com
  8. FRONTEND_ORIGIN=http://localhost:3000
  9. # SMTP configuration
  10. SMTP_HOST=smtp.example.com
  11. SMTP_PORT=587
  12. SMTP_SECURE=false
  13. SMTP_USER=smtp_user@example.com
  14. SMTP_PASS=your_smtp_password
  15. SMTP_FROM_EMAIL=no-reply@example.com