Files
holiday-property-booking/DEPLOYMENT.md
Chris Dumas 1d96054f7a
Some checks failed
Deploy Holiday Property Booking / deploy (push) Failing after 1m26s
Test & Build Holiday Property Booking / test-build (push) Successful in 10m44s
fix: match container ports to host ports
2026-05-22 08:13:19 +00:00

22 lines
665 B
Markdown

# Deployment
## Environment Model
The deployment model is expected to follow the shared dev, QA, and production branch flow once the project is onboarded into the pipeline.
## Runtime Expectations
- `NEXT_PUBLIC_SITE_URL` should match the deployed environment.
- `DATABASE_URL` should target the environment-specific PostgreSQL instance.
- Stripe and email provider secrets live in environment variables.
## Port Mapping
- Dev: host port `7003` -> container port `7003`
- QA: host port `6003` -> container port `6003`
- Production: host port `5003` -> container port `5003`
## Health Check
- `GET /api/health` returns a lightweight JSON readiness response.