An intelligent calendar management application that integrates with Google Calendar.
git clone https://github.com/yourusername/calvin.git
cd calvin
npm installCreate a .env.local file in the root directory:
# Google OAuth (get these from Google Cloud Console)
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret
# NextAuth
NEXTAUTH_SECRET=your-secret-here
NEXTAUTH_URL=http://localhost:3000
# OpenAI
OPENAI_API_KEY=your-openai-api-key-hereTo generate a secret for NEXTAUTH_SECRET:
openssl rand -base64 32npm run devOpen http://localhost:3000 in your browser.