VITE v7.2.2 ready in 342 ms
➜ Local: http://localhost:5173/
➜ Network: use --host to expose
# Copy the example file
cp .env.example .env
# Google Gemini AI (for Luna AI & topic extraction)
VITE_GEMINI_API_KEY=your_gemini_key_here
# Wolfram Alpha (for knowledge validation)
VITE_WOLFRAM_APP_ID=your_wolfram_id_here
# YouTube Data API v3 (for playlist import)
VITE_YOUTUBE_API_KEY=your_youtube_key_here
VITE_YOUTUBE_CLIENT_ID=your_client_id_here
# Press Ctrl+C to stop
npm run dev
# Kill the process using port 5173
# Windows:
netstat -ano | findstr :5173
taskkill /PID <PID> /F
# Mac/Linux:
lsof -ti:5173 | xargs kill -9
# Development
npm run dev # Start dev server
npm run build # Build for production
npm run preview # Preview production build
# Maintenance
npm install # Install dependencies
npm run lint # Check code quality