▲ Deploy Quest Tracker to Vercel

Go from code to live website in 3 steps

What You Need

TIP Sign up for Vercel using your GitHub account - it connects automatically.

Step 1: Push Your Code to GitHub

If your code is not on GitHub yet, create a new repository and push it:

git init git add . git commit -m "Initial commit" git remote add origin https://github.com/YOUR-USERNAME/quest-tracker.git git push -u origin main

Step 2: Import Project on Vercel

  1. Go to vercel.com/new
  2. Click "Import Git Repository"
  3. Select your quest-tracker repository
  4. Click "Deploy"
  5. Wait about 30 seconds - Vercel builds and deploys automatically!
Environment Variables (if needed):

Go to your project on Vercel → Settings → Environment Variables, then add:

  • NODE_ENV = production

Step 3: Your App is Live!

That's it! Vercel gives you a URL like:

https://quest-tracker-abc123.vercel.app

Open it in your browser to see your live app.

Bonus: Every time you push new code to GitHub, Vercel automatically redeploys. No extra steps needed.

Test Your Deployment

Check that everything works:

# Run the health check script npm run health-check https://your-app.vercel.app

Next Steps

Troubleshooting