Skip to content

Latest commit

 

History

History
70 lines (49 loc) · 1.72 KB

File metadata and controls

70 lines (49 loc) · 1.72 KB

Quick Guide: Push to GitHub & Deploy

🚀 Quick Steps

1. Create GitHub Repository

  1. Go to https://github.com/new
  2. Repository name: the-travel-tribe (or your choice)
  3. DO NOT check "Initialize with README"
  4. Click "Create repository"

2. Push Your Code

Copy and run these commands (replace YOUR_USERNAME with your GitHub username):

git remote add origin https://github.com/YOUR_USERNAME/the-travel-tribe.git
git branch -M main
git push -u origin main

Or if you already created the repo, GitHub will show you the commands!

3. Deploy to Vercel (Easiest - 2 minutes!)

  1. Go to https://vercel.com
  2. Sign up/login with GitHub
  3. Click "Add New Project"
  4. Import your the-travel-tribe repository
  5. Click "Deploy" (Vercel auto-detects Vite!)
  6. Done! Your site is live! 🎉

4. Deploy to Netlify (Alternative)

  1. Go to https://netlify.com
  2. Sign up/login with GitHub
  3. Click "Add new site" → "Import an existing project"
  4. Select your repository
  5. Build settings (auto-filled):
    • Build command: npm run build
    • Publish directory: dist
  6. Click "Deploy site"

📝 Current Git Status

Your code is ready! All files are committed. Just need to:

  1. Create GitHub repo
  2. Add remote and push
  3. Deploy to Vercel/Netlify

✅ What's Already Done

  • ✅ Git initialized
  • ✅ All files committed
  • ✅ Deployment configs added (vercel.json, netlify.toml)
  • ✅ GitHub Actions workflow ready
  • ✅ Documentation created

🔗 After Deployment

Your site will have a URL like:

  • Vercel: https://the-travel-tribe.vercel.app
  • Netlify: https://the-travel-tribe.netlify.app

You can add a custom domain later!


Need help? Check DEPLOYMENT.md for detailed instructions.