.env.example 610 B

123456789101112131415161718
  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. BLOB_READ_WRITE_TOKEN=your_vercel_blob_token
  7. # Contact endpoint configuration
  8. CONTACT_TO_EMAIL=team@example.com
  9. FRONTEND_ORIGIN=http://localhost:3000
  10. # SMTP configuration
  11. SMTP_HOST=smtp.example.com
  12. SMTP_PORT=587
  13. SMTP_SECURE=false
  14. SMTP_USER=smtp_user@example.com
  15. SMTP_PASS=your_smtp_password
  16. SMTP_FROM_EMAIL=no-reply@example.com