Launch in 5 minutes 🚀
Follow this tutorial to get your startup live in record time.
1. Database (MongoDB)
You need a MongoDB database.
- Create a free account on MongoDB Atlas.
- Create a new cluster (free tier is fine).
- Get your connection string (e.g.
mongodb+srv://...). - Add it to your
.envfile:MONGODB_URI="your-connection-string"
2. Authentication (Google & GitHub)
To enable social login:
- Go to Google Cloud Console and create a project.
- Create OAuth credentials and get
Client IDandClient Secret. - Add them to
.env:GOOGLE_CLIENT_ID="..." GOOGLE_CLIENT_SECRET="..." - Repeat for GitHub if needed.
3. Payments (Polar.sh)
- Sign up for Polar.sh.
- Create an organization and get your Access Token.
- Add it to
.env:POLAR_ACCESS_TOKEN="..."
4. Deploy to Vercel
- Push your code to GitHub.
- Import your project on Vercel.
- Add your Environment Variables in Vercel settings.
- Click Deploy.
Voila! Your startup is live. 🌍