File size: 390 Bytes
5b56e7c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.PHONY: lint format test test-all clean verify run-dev

lint:
	ruff check backend/
	black --check backend/
	mypy backend/core/

format:
	ruff check --fix backend/
	black backend/

test:
	pytest -m "unit" --tb=short

test-all:
	pytest --tb=short

clean:
	del /s /q __pycache__ .pytest_cache .ruff_cache

verify:
	python verify_env.py

run-dev:
	uvicorn backend.main:app --reload --port 8000