feat: show git commit SHA as version in footer

TERM v1.0 → TERM v5ca5e01 (or whatever SHA is building).
GIT_SHA is injected via vite define from Makefile.
This commit is contained in:
2026-07-02 13:19:43 -04:00
parent 5ca5e018ca
commit f30ddb1323
8 changed files with 30 additions and 4 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ docs:
# Build the web frontend
build-web:
cd web && ([ -s ~/.nvm/nvm.sh ] && . ~/.nvm/nvm.sh && npm run build || npm run build)
cd web && export GIT_SHA=$$(git rev-parse --short HEAD) && ([ -s ~/.nvm/nvm.sh ] && . ~/.nvm/nvm.sh && npm run build || npm run build)
# Run the server locally (dev mode)
run: build-server