| # Server | |
| PORT=5000 | |
| NODE_ENV=development | |
| # MongoDB | |
| MONGODB_URI=mongodb://localhost:27017/directorai | |
| # Redis | |
| REDIS_URL=redis://localhost:6379 | |
| # JWT | |
| JWT_SECRET=your_jwt_secret_here | |
| JWT_EXPIRES_IN=7d | |
| # Antigravity CLI | |
| ANTIGRAVITY_CLI_PATH=antigravity | |
| # Email (Nodemailer) | |
| SMTP_HOST=smtp.gmail.com | |
| SMTP_PORT=587 | |
| SMTP_USER=your_email@gmail.com | |
| SMTP_PASS=your_app_password | |
| # Stripe (payments only) | |
| STRIPE_SECRET_KEY=sk_test_xxx | |
| STRIPE_WEBHOOK_SECRET=whsec_xxx | |
| # File storage | |
| UPLOAD_DIR=./uploads | |
| GENERATED_DIR=./generated | |
| MAX_UPLOAD_SIZE=104857600 | |