docs and tools

This commit is contained in:
counterweight 2025-12-20 23:09:46 +01:00
parent d3638e2e69
commit 917ab0a584
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
5 changed files with 54 additions and 5 deletions

View file

@ -1,4 +1,4 @@
.PHONY: install-backend install-frontend install backend frontend db db-stop db-ready db-seed dev test test-backend test-frontend test-e2e typecheck generate-types generate-types-standalone check-types-fresh check-constants
.PHONY: install-backend install-frontend install setup-hooks backend frontend db db-stop db-ready db-seed dev test test-backend test-frontend test-e2e typecheck generate-types generate-types-standalone check-types-fresh check-constants
-include .env
export
@ -9,7 +9,10 @@ install-backend:
install-frontend:
cd frontend && npm install
install: install-backend install-frontend
install: install-backend install-frontend setup-hooks
setup-hooks:
git config core.hooksPath .githooks
backend:
cd backend && uv run uvicorn main:app --reload