Page 2 of 620% complete
Step 1 of 5

Setup your tools

Three things to install before event day. Each takes 2-3 minutes. If anything fails, screenshot the error and bring it to event day — we'll fix it together in the first 10 minutes.

Sign up for Vercel (free)

Vercel is the platform that hosts the tools you'll build. Free for everything we'll do on event day.

  1. Go to vercel.com/signup
  2. Sign up with email or your Google account
  3. Choose the Hobby (Free) plan
  4. You don't need to create a project yet — just having the account is enough

Install Node.js

Node.js is what runs the Vercel CLI. Without it, deployments fail.

  1. Go to nodejs.org
  2. Download the LTS version for your operating system (Mac or Windows)
  3. Run the installer (accept all defaults)
  4. Verify: Open Terminal (Mac) or Command Prompt (Windows). Type node -v and hit Enter. You should see a version number like v20.18.0. If you see “command not found,” reinstall.

Install Vercel CLI

The Vercel CLI is the tool Claude Code uses to deploy your projects.

  1. Open Terminal (Mac) or Command Prompt (Windows)
  2. Type: npm install -g vercel
  3. Hit Enter and wait for it to finish (1-2 minutes)
  4. Verify: Type vercel --version. You should see a version number like 36.x.x.
Pro tip: If you're on a work computer with restricted permissions, you may get errors during install. If so, run with admin privileges (Windows: right-click Command Prompt → “Run as administrator”; Mac: prefix the command with sudo).