22 lines
334 B
Makefile
22 lines
334 B
Makefile
backend-run:
|
|
go run ./cmd/server
|
|
|
|
backend-test:
|
|
go test ./...
|
|
|
|
frontend-install:
|
|
npm --prefix apps/web install
|
|
|
|
frontend-dev:
|
|
npm --prefix apps/web run dev
|
|
|
|
frontend-build:
|
|
npm --prefix apps/web run build
|
|
|
|
full-build:
|
|
npm --prefix apps/web run build
|
|
go test ./...
|
|
|
|
dev:
|
|
@echo "Run backend and frontend in separate terminals."
|