-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (31 loc) · 775 Bytes
/
Copy pathMakefile
File metadata and controls
43 lines (31 loc) · 775 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
.PHONY: install lock lint test ci run infra-up infra-down infra-status migrate eval secrets
install:
uv sync
lock:
uv lock
lint:
uv run ruff check .
uv run ruff format --check .
test:
uv run pytest
ci:
node --check src/interview_agent/web/app.js
uv lock --check
uv run ruff check .
uv run mypy src/interview_agent
uv run pytest tests/unit -q
bash scripts/check-secrets.sh
run:
uv run uvicorn interview_agent.main:app --host 0.0.0.0 --port 9092 --reload --no-access-log
infra-up:
docker compose up -d mysql redis etcd minio milvus embeddings reranker speech speech-models
infra-down:
docker compose down
infra-status:
docker compose ps
migrate:
uv run alembic upgrade head
eval:
uv run interview-agent eval
secrets:
bash scripts/check-secrets.sh