summaryrefslogtreecommitdiff
path: root/AGENTS.md
diff options
context:
space:
mode:
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md7
1 files changed, 1 insertions, 6 deletions
diff --git a/AGENTS.md b/AGENTS.md
index fbb2f2a..98e355e 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -29,12 +29,7 @@ cd frontend && npm run lint && npm run build
Topology: uvicorn on `127.0.0.1:8001`, `next start` on `127.0.0.1:3001`, nginx TLS reverse-proxy (`/api/` → backend, `/` → frontend). See `README.md` for the full deploy and redeploy commands. Service user is `www-data`; code lives at `/var/www/prism-v2/`.
-Redeploy:
-
-```bash
-cd /var/www/prism-v2 && sudo ./scripts/deploy.sh
-# --no-pull to skip git pull; --install to also refresh systemd units + nginx site
-```
+Deploy flow: bare repo at `/srv/git/prism-v2.git`; pushing master triggers a post-receive hook that `git checkout -f`s the tree into `/var/www/prism-v2/` and runs `scripts/deploy.sh` (build + restart + smoke check). `/var/www/prism-v2/` has no `.git/`. Manual deploy on the server: `sudo ./scripts/deploy.sh` (add `--install` to refresh systemd units / nginx site). See README for first-time setup.
## Coding Style