Set up local development
mainTo run the Next.js application locally, follow these steps:
Configure Environment Variables: Copy the example environment file and add your Google AI Studio API key.
cp .env.example .envIn the
.envfile, set:GEMINI_API_KEY=your_google_api_keyInstall and Run: Install the project dependencies and start the development server.
npm install npm run devAccess App: Open http://localhost:3000 in your browser.
cp .env.example .env
npm install
npm run dev