Ship It to the World
Vercel makes deployment incredibly simple. Your app will be live on the internet with a real URL in under 5 minutes.
Step 1: Create GitHub Repository
- Go to github.com/new
- Name your repository (e.g., "my-awesome-app")
- Keep it public (or private if you prefer)
- Click "Create repository"
Step 2: Push Your Code
In your terminal, run these commands:
git init
git add .
git commit -m "Initial commit"
git remote add origin [your-repo-url]
git push -u origin main
Step 3: Deploy on Vercel
- Go to vercel.com and sign up with GitHub
- Click "Add New Project"
- Import your GitHub repository
- Click "Deploy" — Vercel auto-detects Next.js settings
- Wait ~60 seconds for deployment to complete
🎉 You're Live!
Vercel gives you a URL like your-app.vercel.app. Share it with anyone! Future pushes to GitHub auto-deploy.