-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathmakefile
executable file
·71 lines (57 loc) · 1.75 KB
/
makefile
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
61
62
63
64
65
66
67
68
69
70
71
path := .
define Comment
- Run `make help` to see all the available options.
- Run `make lint` to run the linter.
- Run `make lint-check` to check linter conformity.
- Run `dep-lock` to lock the deps in 'requirements.txt' and 'requirements-dev.txt'.
- Run `dep-sync` to sync current environment up to date with the locked deps.
endef
.PHONY: lint
lint: ruff mypy ## Apply all the linters.
.PHONY: lint-check
lint-check: ## Check whether the codebase satisfies the linter rules.
@echo
@echo "Checking linter rules..."
@echo "========================"
@echo
@uv run ruff check $(path)
@uv run mypy $(path)
.PHONY: ruff
ruff: ## Apply ruff.
@echo "Applying ruff..."
@echo "================"
@echo
@uv run ruff check --fix $(path)
@uv run ruff format $(path)
.PHONY: mypy
mypy: ## Apply mypy.
@echo
@echo "Applying mypy..."
@echo "================="
@echo
@uv run mypy $(path)
.PHONY: help
help: ## Show this help message.
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.PHONY: test
test: ## Run the tests against the current version of Python.
cd svc && uv run pytest -vv && cd ..
.PHONY: dep-lock
dep-lock: ## Freeze deps in 'requirements*.txt' files.
@uv lock
.PHONY: dep-sync
dep-sync: ## Sync venv installation with 'requirements.txt' file.
@uv sync
.PHONY: dep-update
dep-update: ## Update all the deps.
@chmod +x ./bin/update_deps.sh
@./bin/update_deps.sh
.PHONY: run-container
run-container: ## Run the app in a docker container.
docker compose up -d
.PHONY: kill-container
kill-container: ## Stop the running docker container.
docker compose down
.PHONY: run-local
run-local: ## Run the app locally.
uv run uvicorn svc.main:app --port 5002 --reload