Ship in 5 Minutes
Deploy your app in just 5 minutes
Ship in 5 Minutes
Get your app deployed and live on the internet in just 5 minutes.
Prerequisites
Before you start, make sure you have:
- Completed the Get Started guide
- A GitHub account
- A Vercel account (free tier works)
Step 1: Push to GitHub
- Create a new repository on GitHub
- Push your code:
git remote add origin https://github.com/your-username/your-repo.git
git add .
git commit -m "Initial commit"
git push -u origin mainStep 2: Deploy to Vercel
- Go to Vercel
- Click "New Project"
- Import your GitHub repository
- Configure your environment variables
- Click "Deploy"
That's it! Your app will be live in a few minutes 🚀
Step 3: Set Up Environment Variables
In Vercel dashboard:
- Go to your project settings
- Navigate to "Environment Variables"
- Add all variables from your
.env.localfile
Step 4: Configure Custom Domain (Optional)
- Go to your project settings in Vercel
- Navigate to "Domains"
- Add your custom domain
- Follow the DNS configuration instructions
Next Steps
- Set up Database
- Configure Email
- Add Payment Integration