# Navigate to frontend directory
cd frontend
# Install dependencies (first time only)
npm install
# Create .env.local file with your API keys
# Copy the example below and add your keys
# Run development server
npm run devCreate frontend/.env.local file:
GEMINI_API_KEY=your-gemini-api-key-here
ELEVENLABS_API_KEY=your-elevenlabs-api-key-here
ELEVENLABS_VOICE_ID=your-voice-id-here# Development (with hot reload)
npm run dev
# Build for production
npm run build
# Start production server
npm start
# Lint code
npm run lintAfter running npm run dev, open: