# If you haven't initialized git yet
git init
git add .
git commit -m "Ready to deploy"
# Create a new repo on GitHub, then:
git remote add origin https://github.com/YOUR_USERNAME/AI-App-Store.git
git branch -M main
git push -u origin main- Go to vercel.com and sign up/login
- Click "Add New..." → "Project"
- Import your GitHub repository
- Click "Deploy"
- Wait ~2 minutes
- Done! Your site is live 🎉
- Perfect for demo/landing page
- Forms will submit successfully
- Submissions won't be stored (but you'll see success messages)
Use a service like:
- Formspree (free tier: 50 submissions/month)
- Web3Forms (free, unlimited)
- EmailJS (free tier available)
Just update the API routes to send to these services instead of saving files.
https://ai-app-store.vercel.app (or your custom domain)
- Every push to
main= auto-deploy to production - Every push to other branches = preview URL
That's it! 🚀