guide2 min read

.env Variables Guide

How to use environment variables for configuration and secrets.

Environment variables store configuration and secrets outside your code. Create a .env file: DATABASE_URL=postgres://..., API_KEY=sk_live_... In Next.js, prefix with NEXT_PUBLIC_ for client-side access. Never commit .env to Git — add it to .gitignore. Use .env.example with placeholder values for documentation. In production, set env vars in your hosting platform dashboard (Cloudflare, Vercel, Netlify).