- Go to https://github.com/new
- Repository name:
the-travel-tribe(or your choice) - DO NOT check "Initialize with README"
- Click "Create repository"
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 mainOr if you already created the repo, GitHub will show you the commands!
- Go to https://vercel.com
- Sign up/login with GitHub
- Click "Add New Project"
- Import your
the-travel-triberepository - Click "Deploy" (Vercel auto-detects Vite!)
- Done! Your site is live! 🎉
- Go to https://netlify.com
- Sign up/login with GitHub
- Click "Add new site" → "Import an existing project"
- Select your repository
- Build settings (auto-filled):
- Build command:
npm run build - Publish directory:
dist
- Build command:
- Click "Deploy site"
Your code is ready! All files are committed. Just need to:
- Create GitHub repo
- Add remote and push
- Deploy to Vercel/Netlify
- ✅ Git initialized
- ✅ All files committed
- ✅ Deployment configs added (vercel.json, netlify.toml)
- ✅ GitHub Actions workflow ready
- ✅ Documentation created
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.