-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
55 lines (37 loc) · 815 Bytes
/
Makefile
File metadata and controls
55 lines (37 loc) · 815 Bytes
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
.PHONY: help install test smoke lint format typecheck licenses audit clean docs \
docker-build compose-up compose-down migrate serve built-from
PYTHON ?= python
help:
@$(PYTHON) tasks.py --help
install:
$(PYTHON) tasks.py install
test:
$(PYTHON) tasks.py test
smoke:
$(PYTHON) tasks.py smoke
lint:
$(PYTHON) tasks.py lint
format:
$(PYTHON) tasks.py format
typecheck:
$(PYTHON) tasks.py typecheck
licenses:
$(PYTHON) tasks.py licenses
audit:
$(PYTHON) tasks.py audit
clean:
$(PYTHON) tasks.py clean
docs:
$(PYTHON) tasks.py docs
docker-build:
$(PYTHON) tasks.py docker-build
compose-up:
$(PYTHON) tasks.py compose-up
compose-down:
$(PYTHON) tasks.py compose-down
migrate:
$(PYTHON) tasks.py migrate
serve:
$(PYTHON) tasks.py serve
built-from:
$(PYTHON) tasks.py built-from