# MySQL Database Configuration MYSQL_HOST=localhost MYSQL_PORT=3306 MYSQL_DATABASE=task_manager MYSQL_USER=root MYSQL_PASSWORD=your_password_here # Server Configuration PORT=4000 NODE_ENV=development # JWT Configuration JWT_SECRET=your_jwt_secret_here JWT_REFRESH_SECRET=your_jwt_refresh_secret_here # Email Configuration (if using email features) EMAIL_HOST=smtp.gmail.com EMAIL_PORT=587 EMAIL_USER=your_email@gmail.com EMAIL_PASS=your_email_password # Redis Configuration (if using Redis) REDIS_URL=redis://localhost:6379 # VAPID Keys for Push Notifications VAPID_PUBLIC_KEY=your_vapid_public_key VAPID_PRIVATE_KEY=your_vapid_private_key