-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
49 lines (37 loc) · 1.37 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
MAKEFLAGS += --no-print-directory
## ---------------------------------------------------------------------------
## | The purpose of this Makefile is to provide all the functionality needed |
## | to install, develop, build, and run this app. |
## ---------------------------------------------------------------------------
help: ## Show this help
@sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST)
install: ## Install all dependencies
@uv sync --all-extras
dev: ## Run a dev server and watch files to restart
@$(MAKE) install
@fastapi dev src/app/main.py --port 8080
serve: ## Run a production server
@$(MAKE) install
@fastapi run src/app/main.py --port 8080
test: ## Run tests
@pytest -rxP
docker: ## Spin down docker containers and then rebuild and run them
@docker compose down
@docker compose up -d --build
format: ## Format code
@$(MAKE) install
@ruff check src/app --fix
@ruff format src/app
lint: ## Lint code
@$(MAKE) install
@$(MAKE) format
@mypy src/app
lock: ## Update lock file
@$(MAKE) install
@uv lock
update: ## Update dependencies
@$(MAKE) install
@uv sync --upgrade
clean: ## Remove build files
@rm -rf .venv/ .mypy_cache/ .ruff_cache/ .pytest_cache/
@find . -type d -name __pycache__ -exec rm -r {} \+