feat(FN-002): complete Step 1 — Root Monorepo Tooling and Repository Hygiene

This commit is contained in:
Fusion
2026-05-14 01:14:36 +02:00
commit d74f77fd33
10 changed files with 274 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
.PHONY: install lint test typecheck build dev compose-up compose-down clean
install:
pnpm install
cd apps/api && python3 -m venv .venv && .venv/bin/pip install -e ".[dev]"
lint:
pnpm lint
test:
pnpm test
typecheck:
pnpm typecheck
build:
pnpm build
dev:
pnpm dev
compose-up:
docker compose up --build -d
compose-down:
docker compose down
clean:
rm -rf node_modules apps/web/node_modules apps/api/.venv