- Go to https://github.com/new
- Repository name:
flight-dispatch-center(or your choice) - Description: "Professional Flight Operations Dispatch System"
- Public/Private: Your choice
- DO NOT initialize with README (we already have one)
- Click "Create repository"
cd ~/flight-planner
# Add GitHub remote (replace YOUR_USERNAME)
git remote add origin https://github.com/YOUR_USERNAME/flight-dispatch-center.git
# Push to GitHub
git branch -M main
git push -u origin main- Go to https://render.com
- Sign up with GitHub
- New > Web Service
- Connect your repository
- Settings:
- Name: flight-dispatch-center
- Environment: Node
- Build Command:
npm install - Start Command:
npm start - Port: 3000 (auto-detected)
- Click "Create Web Service"
- Wait ~5 minutes
- Your app:
https://flight-dispatch-center.onrender.com
- Go to https://railway.app
- Sign up with GitHub
- New Project > Deploy from GitHub repo
- Select your repository
- Railway auto-detects Node.js
- Click "Deploy"
- Get public URL from Settings
# Install Heroku CLI first
brew install heroku/brew/heroku
# Login
heroku login
# Create app
heroku create flight-dispatch-center
# Push
git push heroku main
# Open
heroku open# Install Vercel CLI
npm i -g vercel
# Deploy
vercel --prodMost deployment platforms:
PORT=3000
NODE_ENV=production
Once deployed, you can add custom domain:
- Render: Settings > Custom Domains
- Railway: Settings > Networking
- Vercel: Settings > Domains
Your flight dispatch system is now live and accessible worldwide!
Recommended: Render.com for FREE deployment with good performance