.env.development.local Verified Jun 2026

# ----------------------------------------------------------- # Feature Flags # ----------------------------------------------------------- ENABLE_NEW_DASHBOARD=true MAINTENANCE_MODE=false

Run your production build locally with debugging enabled, without altering the production config. .env.development.local

Imagine you are integrating with a third-party service like Google Maps, Stripe, or OpenAI. Your development team shares a generic DEVELOPMENT_API_KEY in .env.development . However, that shared key is throttled or tracked. If you need to test high-volume requests on your local machine, you can place your personal premium API key in .env.development.local without affecting your teammates or the CI/CD pipeline. .env.development.local

# Sensitive Keys (Keep these secret!) STRIPE_SECRET_KEY=sk_test_51H7... .env.development.local