The actual deploy on optical-dev.oliver.solutions lives at /opt/dow-prod-tracker — standard location for third-party apps on Debian/Ubuntu. The docs said /srv (my arbitrary choice). Both work; docs should match reality. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8.3 KiB
Deploying dow-prod-tracker
Target: https://optical-dev.oliver.solutions/dow-prod-tracker, hosted on the
shared Oliver Agency dev box alongside hp-prod-tracker.
Run the deploy script from the repo root on the server:
cd /opt/dow-prod-tracker # or wherever you cloned it
./deploy.sh
The first run will install Docker, Compose, Apache and UFW if missing, prompt
you to fill in .env from .env.example, then bring everything up. Subsequent
runs are idempotent — safe to re-run for updates.
Why this deploy is different from the rest
The shared server runs multiple apps from sibling deploy directories. Two things must hold or those apps will silently corrupt each other (this has bitten us before — see CLAUDE.md):
-
docker-compose.ymlMUST pin a top-levelname:field. We pinname: dow-prod-tracker. Without this, Compose defaults the project name to the parent directory name. If two apps both live underdeploy/, they collapse onto the same project and fight over containers (deploy-db-1) and volumes (deploy_pgdata). Deploying one would silently evict the other and destroy its data. -
Every
docker composeinvocation indeploy.shpasses-p dow-prod-trackeras belt-and-braces. This is redundant withname:today, but if anyone moves thename:line out of the compose file, or runs commands by hand from a different cwd, the-pflag is the safety net.
The deploy script also enforces:
| Concern | Value | Where |
|---|---|---|
| Compose project name | dow-prod-tracker |
name: in docker-compose.yml + -p in deploy.sh |
| App port (host) | 3002 preferred, auto-bumped if busy |
deploy.sh probes, exports APP_HOST_PORT, renders apache/dow-prod-tracker.conf from the .tmpl |
| DB port (host) | 5492 preferred, auto-bumped if busy |
deploy.sh probes, exports DB_HOST_PORT into compose |
| DB name | dow_prod_tracker |
docker-compose.yml env + .env DATABASE_URL |
| App URL path | /dow-prod-tracker |
next.config.ts basePath |
| Apache reverse proxy | → 127.0.0.1:${APP_HOST_PORT}/dow-prod-tracker |
rendered on each deploy from apache/dow-prod-tracker.conf.tmpl |
Auto port selection. Everything runs in Docker — the container-internal
ports (app 3000, db 5432) never change. The host ports are only used by
Apache's reverse proxy (for the app) and direct psql debugging (for the
db). If 3002 or 5492 happens to be in use (another app on the shared
server, something on your laptop), deploy.sh picks the next free port
upward and stitches it through: compose env var, Apache ProxyPass,
health check, "Deploy complete" banner. No manual port negotiation.
To force specific ports, export them before running:
APP_HOST_PORT=3005 DB_HOST_PORT=5495 ./deploy.sh
hp-prod-tracker lives on 3001. Dow prefers 3002; the probe will skip
3001 if something (like HP) is on it.
.env.production checklist
Required env vars on the server:
DATABASE_URL=postgresql://postgres:<DB_PASSWORD>@db:5432/dow_prod_tracker?schema=public
DB_PASSWORD=<long random>
AUTH_SECRET=<openssl rand -base64 32>
# Auth — local credentials in MVP. Flip to true post-MVP once Entra is wired.
NEXT_PUBLIC_AUTH_ENTRA_ENABLED=false
# Entra (only required when NEXT_PUBLIC_AUTH_ENTRA_ENABLED=true)
AZURE_CLIENT_ID=
AZURE_TENANT_ID=
AZURE_REDIRECT_URI=https://optical-dev.oliver.solutions/dow-prod-tracker/login
# OMG webhook receiver
OMG_WEBHOOK_SECRET=<openssl rand -hex 32> # share with Shashank
OMG_WEBHOOK_ALLOW_INSECURE=false
# AI chat (optional — chat features degrade gracefully if absent)
ANTHROPIC_API_KEY=
OLLAMA_HOST=http://10.24.42.219:11434
OLLAMA_CHAT_MODEL=gemma4:latest
OLLAMA_EMBED_MODEL=nomic-embed-text
# Cron + API key (used for scheduled tasks + machine-to-machine API access)
CRON_SECRET=<openssl rand -hex 32>
API_KEY=<openssl rand -hex 32>
# Initial admin (optional — overrides the default admin@dowjones.com / random pw)
DOW_ADMIN_EMAIL=admin@dowjones.com
DOW_ADMIN_PASSWORD= # leave blank → seed prints a random one
First-time setup on a fresh server
# 1. Clone — /opt is standard for third-party apps on Debian/Ubuntu
sudo mkdir -p /opt && sudo chown $USER:$USER /opt
cd /opt
git clone git@bitbucket.org:zlalani/dow-prod-tracker.git
cd dow-prod-tracker
# 2. Configure
cp .env.example .env
$EDITOR .env # fill in real secrets
# 3. Deploy (installs deps, builds, runs migrations, configures Apache + UFW)
./deploy.sh
# 4. Seed the Dow tenant + initial admin (one-time)
docker compose -p dow-prod-tracker exec app npm run db:seed
# → save the printed admin email + temp password
Updating an existing deployment
cd /opt/dow-prod-tracker
./deploy.sh # pulls, rebuilds, restarts
The Prisma migration in prisma/migrations/20260420000000_init/ runs on
container startup (via the standalone Next.js entrypoint). New migrations land
automatically.
Verification — must pass before declaring deploy done
-
Volume isolation — both apps' volumes must be distinct:
docker volume ls | grep -E "hp-prod-tracker|dow-prod-tracker"Expect to see
hp-prod-tracker_pgdata,hp-prod-tracker_uploads_data,dow-prod-tracker_pgdata,dow-prod-tracker_uploads_data— four distinct volumes. -
HP unaffected — hit HP's URL in a browser and confirm it loads. If it fails, the new deploy collided with it (don't continue — fix first).
-
Health check —
curl https://optical-dev.oliver.solutions/dow-prod-tracker/api/healthshould return 200. -
Login — open the URL in a browser, sign in with the seed admin credentials, get redirected to
/change-password?first=1, set a real password, land on/dashboard. -
XLSX ingest — upload
Dow Jones_Studio Tracker_Example_*.xlsxviaPOST /api/projects/bulk-import?commit=false(curl or via the UI button). Expect a preview JSON with normalized rows + any row errors. Then commit with?commit=trueand spot-check a project in psql:docker compose -p dow-prod-tracker exec db \ psql -U postgres -d dow_prod_tracker \ -c "select \"omgJobNumber\", name, status, \"clientTeamId\" from projects limit 5;" -
OMG webhook — when Shashank confirms the payload shape, share
OMG_WEBHOOK_SECRETand have OMG POST tohttps://optical-dev.oliver.solutions/dow-prod-tracker/api/webhooks/omgwith headerX-OMG-Signature: sha256=<hex hmac of body>. -
Per-team visibility — invite a test user as
CLIENT_VIEWER, assign them to one client team only (Settings → Client Teams), accept the invite link, sign in, confirm they only see that team's projects.
Rollback
If a deploy goes wrong:
cd /opt/dow-prod-tracker
git log --oneline -5 # find previous good commit
git checkout <previous-commit>
./deploy.sh --skip-pull # rebuild from that commit
If the database itself is in a bad state (rare — Prisma migrations are
forward-only), restore from the latest postgres dump in /srv/backups/
(set up your own cron for these — not yet automated).
Common issues
"port is already allocated" — very unlikely now; deploy.sh auto-picks
a free port before docker compose up. If it still happens, something
grabbed the port between the probe and the bind. Just rerun ./deploy.sh.
If it's a stale dow-prod-tracker container from a botched deploy,
docker compose -p dow-prod-tracker down will release it first.
Apache returns 502 — the app container isn't running or its health check
is failing. docker compose -p dow-prod-tracker logs app --tail 50.
"Project with that OMG number already exists in a different organization"
— a previous import landed projects under a different org (e.g. dev seed).
Either delete those projects, or recreate the org with the canonical
dowjones.com domain (the seed and webhook both look up the org by domain).
/api/webhooks/omg returns 401 — signature mismatch. Verify both ends
share the exact OMG_WEBHOOK_SECRET and that OMG sends the header as
X-OMG-Signature: sha256=<hex>. For local stub testing only, set
OMG_WEBHOOK_ALLOW_INSECURE=true in .env and restart.