-
Notifications
You must be signed in to change notification settings - Fork 1
/
makefile
executable file
·101 lines (74 loc) · 2.11 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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: black isort flake 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
@black --check $(path)
@isort --check $(path)
@flake8 $(path)
@mypy $(path)
.PHONY: black
black: ## Apply black.
@echo
@echo "Applying black..."
@echo "================="
@echo
@black --fast $(path)
@echo
.PHONY: isort
isort: ## Apply isort.
@echo "Applying isort..."
@echo "================="
@echo
@isort $(path)
.PHONY: flake
flake: ## Apply flake8.
@echo
@echo "Applying flake8..."
@echo "================="
@echo
@flake8 $(path)
.PHONY: mypy
mypy: ## Apply mypy.
@echo
@echo "Applying mypy..."
@echo "================="
@echo
@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.
pytest
.PHONY: dep-lock
dep-lock: ## Freeze deps in 'requirements.txt' file.
@pip-compile requirements.in -o requirements.txt --no-emit-options
@pip-compile requirements-dev.in -o requirements-dev.txt --no-emit-options
.PHONY: dep-sync
dep-sync: ## Sync venv installation with 'requirements.txt' file.
@pip-sync
.PHONY: dep-update
dep-update: ## Update all the deps.
@chmod +x ./scripts/update_deps.sh
@./scripts/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.
uvicorn app.main:app --port 5000 --reload