Auto-generate .env and .env.example files by scanning your codebase and detecting environment variables automatically.
Env Harvester analyzes your project, finds environment variable usage, and uses Gemini AI to generate realistic placeholder values and setup instructions for each variable.
Features
Scans JavaScript and TypeScript projects
Detects process.env.* usage
Generates .env and .env.example
AI-powered placeholder values
AI-generated setup instructions
Safe file creation logic
Shows where each variable is used
Example Output
# Used in: src/server.js
# How to get: Standard default port for local development.
PORT=3000
# Used in: src/config/db.js
# How to get: Create a database connection string from your database provider dashboard.
DATABASE_URL=your_value_here