starting
This commit is contained in:
commit
a764c92a0b
11 changed files with 1081 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
.PHONY: install-backend install-frontend install backend frontend
|
||||
|
||||
install-backend:
|
||||
cd backend && uv sync
|
||||
|
||||
install-frontend:
|
||||
cd frontend && npm install
|
||||
|
||||
install: install-backend install-frontend
|
||||
|
||||
backend:
|
||||
cd backend && uv run uvicorn main:app --reload
|
||||
|
||||
frontend:
|
||||
cd frontend && npm run dev
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue