-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
52 lines (41 loc) · 1.45 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
VIRTUAL_ENV ?= env
all: $(VIRTUAL_ENV)
.PHONY: help
# target: help - Display callable targets
help:
@egrep "^# target:" [Mm]akefile
.PHONY: clean
# target: clean - Display callable targets
clean:
rm -rf build/ dist/ docs/_build *.egg-info
find $(CURDIR) -name "*.py[co]" -delete
find $(CURDIR) -name "*.orig" -delete
find $(CURDIR)/$(MODULE) -name "__pycache__" | xargs rm -rf
# =============
# Development
# =============
$(VIRTUAL_ENV): requirements.txt
@[ -d $(VIRTUAL_ENV) ] || python -m venv $(VIRTUAL_ENV)
@$(VIRTUAL_ENV)/bin/pip install -e .
@touch $(VIRTUAL_ENV)
.PHONY: t test
# target: test - Runs tests
t test: $(VIRTUAL_ENV)
@$(VIRTUAL_ENV)/bin/pytest -xsv tests
.PHONY: db
db:
@$(VIRTUAL_ENV)/bin/muffin example --config=example.config.debug pw_migrate
@$(VIRTUAL_ENV)/bin/muffin example --config=example.config.debug example_users
.PHONY: run
run: $(VIRTUAL_ENV)
@$(VIRTUAL_ENV)/bin/muffin example --config=example.config.debug pw_migrate
@$(VIRTUAL_ENV)/bin/muffin example --config=example.config.debug example_users
@$(VIRTUAL_ENV)/bin/uvicorn --reload --reload-dir $(CURDIR)/example --port 5000 example:app
.PHONY: shell
shell: $(VIRTUAL_ENV)
@$(VIRTUAL_ENV)/bin/muffin example --config=example.config.debug shell
.PHONY: docker
docker:
docker build -f $(CURDIR)/devops/Dockerfile -t muffin-example:latest $(CURDIR)
docker-run: docker
@docker run --rm -it -p 5000:80 --env GWORKERS=1 --name muffin-example muffin-example:latest $(RUN)