# Server PORT=4000 NODE_ENV=development # Database DB_HOST=localhost DB_PORT=5432 DB_USERNAME=thumbpreview DB_PASSWORD=thumbpreview123 DB_DATABASE=thumbpreview # YouTube API YOUTUBE_API_KEY=YOUR_YOUTUBE_API_KEY_HERE # Upload UPLOAD_DIR=./uploads MAX_FILE_SIZE=5242880 # Google OAuth GOOGLE_CLIENT_ID=your-google-client-id.apps.googleusercontent.com GOOGLE_CLIENT_SECRET=your-google-client-secret GOOGLE_CALLBACK_URL=http://localhost:4000/api/auth/google/callback # JWT Configuration JWT_SECRET=your-secure-random-secret-min-32-characters-long JWT_ACCESS_EXPIRATION=15m JWT_REFRESH_EXPIRATION=7d # Frontend URL (for OAuth redirects) FRONTEND_URL=http://localhost:3000