Production deployment guides and checklists for Meteo Weather App.
- DEPLOY_NOW.md - Quick deployment guide for immediate deployment
- DEPLOYMENT_GUIDE.md - Comprehensive deployment documentation
- DEPLOYMENT_GUIDE_PRIVATE.md - Server-specific private deployment info
- DEPLOYMENT_TESTING_CHECKLIST.md - Post-deployment verification steps
- BUILD_VALIDATION.md - Build configuration validation
ssh michael@tachyonfuture.com
cd /home/michael/meteo-app
git pull origin main
bash scripts/deploy-beta.shSee DEPLOYMENT_GUIDE.md for detailed Docker setup.
GitHub Actions automatically deploys on push to main branch.
See ../cicd/ for pipeline documentation.
- All tests passing (
npm test) - Security scan clean (
npm audit) - Environment variables configured
- Database migrations applied
- SSL certificates valid
- Backup created
See DEPLOYMENT_TESTING_CHECKLIST.md for complete checklist.
- Frontend: https://meteo-beta.tachyonfuture.com
- API: https://api.meteo-beta.tachyonfuture.com
- Server: Hostinger VPS (michael@tachyonfuture.com)
- Containers: meteo-frontend-prod, meteo-backend-prod, meteo-mysql-prod
If deployment fails, see:
Related Documentation:
- 🔐 Security setup: ../security/
- 📖 Getting started: ../getting-started/
- 💻 Development guide: ../development/