-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
60 lines (41 loc) · 910 Bytes
/
Makefile
File metadata and controls
60 lines (41 loc) · 910 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.PHONY: docs docs-build adr qlty
containers:
docker compose build --build-arg UID=`id -u`
dev-http:
docker compose up dev-http
dev-socketio:
docker compose up dev-socketio
migrate:
docker compose run --rm migrate
autogenerate-migration:
docker compose run --rm autogenerate-migration
test:
uv run pytest -n auto --cov
ci-test:
uv run pytest -n 0
ci-coverage:
uv run pytest -n 0 --cov --cov-report lcov
typing:
uv run mypy
install-dependencies:
uv sync --all-groups --no-dev --no-install-project --frozen
dev-dependencies:
uv sync --all-groups --frozen
update-dependencies:
uv lock --upgrade
uv sync --all-groups --frozen
format:
uv run ruff format --check .
lint:
uv run ruff check .
fix:
uv run ruff format .
uv run ruff check . --fix
uv run ruff format .
qlty:
qlty smells --all
check: lint format typing test
docs:
uv run mkdocs serve
docs-build:
uv run mkdocs build