Initialize Aidoit v0.1 monorepo
CI / frontend (push) Canceled after 0s
CI / api (push) Canceled after 0s

This commit is contained in:
Pavel Kerndl
2026-07-27 18:27:37 +02:00
commit c0b013f067
65 changed files with 1323 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
.PHONY: install dev up down logs build lint typecheck test
install:
pnpm install
cd apps/api && python -m venv .venv && .venv/bin/pip install -r requirements-dev.txt
dev:
pnpm dev
up:
docker compose -f infrastructure/docker/compose.yml up -d
down:
docker compose -f infrastructure/docker/compose.yml down
logs:
docker compose -f infrastructure/docker/compose.yml logs -f
build:
pnpm build
lint:
pnpm lint
typecheck:
pnpm typecheck
test:
pnpm test