How do you handle environment variables in production?
- Use real environment variables on the server or container.
- Avoid committing .env files to source control.
- In cloud providers, set environment variables in the dashboard.
- Use tools like dotenv only in development.
- For sensitive secrets, consider secret managers like AWS Secrets Manager or
HashiCorp Vault.