Static Site Deployment (Simplest)
# 1. Push to GitHub
git init
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/username/repo.git
git push -u origin main
# 2. Deploy on Vercel
- Visit vercel.com
- Import your GitHub repo
- Click Deploy
Full Stack App Deployment
# 1. Separate frontend and backend
/my-app
/frontend # React/Next.js app
/backend # Python/Node API
# 2. Deploy frontend to Vercel
- Push to GitHub
- Import to Vercel
- Set environment variables for API URL
# 3. Deploy backend to Railway
- Push to GitHub
- Create new Railway project
- Connect GitHub repo
- Set environment variables
- Railway will auto-detect your language
Data API Deployment
# 1. Prepare your API
requirements.txt # Python dependencies
Procfile # Command to run server
.env # Environment variables
# 2. Deploy to Heroku
heroku create
git push heroku main
# 3. Set up database
heroku addons:create heroku-postgresql