docs and tools
This commit is contained in:
parent
d3638e2e69
commit
917ab0a584
5 changed files with 54 additions and 5 deletions
7
Makefile
7
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue