# Production Deployment

# 1. Security Considerations

Change Default Secrets:

# Generate secure random strings for these values
COOKIE_SECRET=$(openssl rand -base64 32)
JWT_SECRET=$(openssl rand -base64 64)

Database Security:

  • Change the default PostgreSQL password
  • Consider using a managed database service
  • Enable SSL connections if possible