Starter Templates
ENV Manager Pro ships with seven framework-specific .env templates. Each template includes the environment variables most commonly needed by that framework, with descriptive placeholder values.
Using a Template
Click 📦 New from Template in the Pro Tools panel, or run ENV Manager: New .env from Template.
- Choose your framework from the quick pick list
- Enter a filename (e.g.
.env.local,.env) - The file is created in your workspace root and opened in the editor
Available Templates
Next.js
File: .env.local
# App
NEXT_PUBLIC_APP_URL=http://localhost:3000
NEXT_PUBLIC_APP_NAME=My Next App
# Auth (NextAuth.js)
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your_secret_here
# Database
DATABASE_URL=postgresql://postgres:password@localhost:5432/mydb
# APIs
OPENAI_API_KEY=your_secret_here
STRIPE_SECRET_KEY=your_secret_here
STRIPE_PUBLISHABLE_KEY=your_value_here
# Email
SENDGRID_API_KEY=your_secret_here
Express.js
File: .env
Includes: PORT, NODE_ENV, DATABASE_URL, JWT_SECRET, CORS_ORIGIN, REDIS_URL, LOG_LEVEL, API_KEY
Django
File: .env
Includes: DJANGO_SECRET_KEY, DEBUG, ALLOWED_HOSTS, DATABASE_URL, REDIS_URL, EMAIL_HOST, SENTRY_DSN, AWS_ACCESS_KEY_ID, AWS_S3_BUCKET_NAME