-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (22 loc) · 694 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (22 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.PHONY: dev infra-up infra-down public-audit backend-test backend-lint web-dev web-test web-lint web-build check
dev:
./scripts/dev.sh
infra-up:
docker compose -f infra/docker-compose.yml up -d
infra-down:
docker compose -f infra/docker-compose.yml down
public-audit:
python3 scripts/validate_public_release.py
backend-test:
cd backend && ENVIRONMENT=testing PYTHONPATH=. pytest -q
backend-lint:
cd backend && ruff check app tests
web-dev:
npm --prefix apps/web run dev
web-test:
npm --prefix apps/web run test:run
web-lint:
npm --prefix apps/web run lint
web-build:
npm --prefix apps/web run build
check: public-audit backend-lint backend-test web-lint web-test web-build