-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
75 lines (52 loc) · 1.52 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
SRCPATH := $(shell pwd)
PROJECTNAME := $(shell basename $CURDIR)
ENTRYPOINT := $(PROJECTNAME).ini
define HELP
Manage $(PROJECTNAME). Usage:
make run - Run $(PROJECTNAME).
make restart - Purge cache & reinstall modules.
make deploy - Pull latest build and deploy to production.
make update - Update pip dependencies via Python Poetry.
make format - Format code with Python's `Black` library.
make lint - Check code formatting with flake8
make clean - Remove cached files and lock files.
endef
export HELP
.PHONY: run restart deploy update format lint clean help
requirements: .requirements.txt
env: .venv/bin/activate
.requirements.txt: requirements.txt
$(shell . .venv/bin/activate && pip install -r requirements.txt)
all help:
@echo "$$HELP"
.PHONY: run
run: env
service $(PROJECTNAME) start
.PHONY: restart
restart: env
service $(PROJECTNAME) stop
make clean
service $(PROJECTNAME) start
service $(PROJECTNAME) status
.PHONY: deploy
deploy:
make clean
. ./deploy.sh
.PHONY: update
update: env
.venv/bin/python3 -m pip install -U pip
poetry update
poetry export -f requirements.txt --output requirements.txt --without-hashes
.PHONY: format
format: env
$(shell . .venv/bin/activate && isort ./)
$(shell . .venv/bin/activate && black ./)
.PHONY: lint
lint:
flake8 ./app --count --select=E9,F63,F7,F82 --show-source --statistics
.PHONY: clean
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
find . -name 'poetry.lock' -delete
find . -name 'Pipefile.lock' -delete