833 B
833 B
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_URLshould match the deployed environment.DATABASE_URLshould target the environment-specific PostgreSQL instance.- Stripe and email provider secrets live in environment variables.
- The production container applies Prisma migrations and seeds the property inventory before the Next.js server starts so checkout has the required
Propertyrecords.
Port Mapping
- Dev: host port
7003-> container port7003 - QA: host port
6003-> container port6003 - Production: host port
5003-> container port5003
Health Check
GET /api/healthreturns a lightweight JSON readiness response.