# Copy to .env and edit. `make dev` and `make prod` rewrite APP_ENV/APP_PORT # in place, so leave those two lines as-is — the Makefile owns them. # Container + network names. Keep distinct so multiple stacks don't clash. COMPOSE_PROJECT_NAME=omni-pca-docs # Mode toggle. dev = Astro dev server + HMR on 4321; prod = static caddy on 80. APP_ENV=prod APP_PORT=80 # Public hostname Caddy will route to this container. Match the DNS record. PUBLIC_DOMAIN=hai-omni-pro-ii.warehack.ing # Vite HMR client hostname — only used in dev. Same as PUBLIC_DOMAIN when # you want to develop through the live reverse proxy with a real cert, # or 'localhost' for local-only. VITE_HMR_HOST=hai-omni-pro-ii.warehack.ing