Please install and set up before the workshop:
- Node.js version 18+
- nvm (Node Version Manager)
- Git
- A GitHub account
- A Vercel account (connected to GitHub)
- A Google AI API Key from Google AI Studio
git clone https://github.com/YOUR_USERNAME/hack-ready-workshop-starter.git
cd hack-ready-workshop-starternvm use 18npm installCreate a file called .env.local in the root of your project.
Copy the contents from .env.dev into .env.local using:
cp .env.dev .env.localOpen .env.local and replace the placeholder values with your actual keys:
GOOGLE_GENERATIVE_AI_API_KEY=your-google-api-key-hereNote: Your Google API key can be generated at: Google AI Studio
Important: All environment variables must start with NEXT_PUBLIC_ for Next.js to expose them to the frontend.
Start the app locally with:
npm run devVisit http://localhost:3000 in your browser.