-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (35 loc) · 791 Bytes
/
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
.PHONY: help
help:
@echo "USAGE"
@echo " make <commands>"
@echo ""
@echo "AVAILABLE COMMANDS"
@echo " dev Start the app"
@echo " ref Reformat code"
@echo " req pyproject.toml >> requirements.txt"
@echo " test Start the pytest"
@echo " migrate Alembic migrate database"
@echo " generate Alembic generate database"
.PHONY: blue
blue:
poetry run blue app/
.PHONY: isort
isort:
poetry run isort app/
.PHONY: ref
ref: blue isort
.PHONY: dev
dev:
poetry run fastapi dev app
.PHONY: req
req:
poetry export --without-hashes --without-urls | awk '{ print $1 }' FS=';' > requirements.txt
.PHONY: test
test:
poetry run pytest tests
.PHONY: migrate
migrate:
poetry run alembic upgrade head
.PHONY: generate
generate:
poetry run alembic revision --autogenerate