-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Makefile
107 lines (79 loc) · 2.67 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.PHONY: $(MAKECMDGOALS)
MAKEFLAGS += --no-print-directory
##
## 🚧 DipDup developer tools
##
PACKAGE=dipdup
TAG=latest
SOURCE=src tests scripts
DEMO=''
FRONTEND_PATH=../interface
help: ## Show this help (default)
@grep -Fh "##" $(MAKEFILE_LIST) | grep -Fv grep -F | sed -e 's/\\$$//' | sed -e 's/##//'
install:
pdm sync --clean
##
##-- CI
##
all: ## Run an entire CI pipeline
make format lint test
format: ## Format with all tools
make black
lint: ## Lint with all tools
make ruff mypy
test: ## Run tests
COVERAGE_CORE=sysmon pytest tests
image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
##
black: ## Format with black
black ${SOURCE}
ruff: ## Lint with ruff
ruff check --fix --unsafe-fixes ${SOURCE}
mypy: ## Lint with mypy
mypy ${SOURCE}
##
##-- Docs
##
docs_build: docs
docs: ## Build docs
python scripts/docs.py check-links --source docs
python scripts/docs.py dump-references
python scripts/docs.py dump-demos
python scripts/docs.py dump-metrics
python scripts/docs.py dump-jsonschema
python scripts/docs.py merge-changelog
python scripts/docs.py markdownlint
python scripts/docs.py build --source docs --destination ${FRONTEND_PATH}/content/docs
docs_serve: ## Build docs and start frontend server
python scripts/docs.py build --source docs --destination ${FRONTEND_PATH}/content/docs --watch --serve
docs_watch: ## Build docs and watch for changes
python scripts/docs.py build --source docs --destination ${FRONTEND_PATH}/content/docs --watch
docs_publish: ## Tag and push `docs-next` ref
git tag -d docs-next && git tag docs-next && git push --force origin docs-next
##
fixme: todo
todo: ## Find FIXME and TODO comments
grep -r -e 'FIXME: ' -e 'TODO: ' -n src/dipdup --color
typeignore: ## Find type:ignore comments
grep -r -e 'type: ignore' -n src/dipdup --color
##
##-- Release
##
update: ## Update dependencies and dump requirements.txt
pdm update
pdm export --without-hashes -f requirements --prod -o requirements.txt
demos: ## Recreate demo projects from templates
python scripts/demos.py render ${DEMO}
python scripts/demos.py init ${DEMO}
make format lint
demos_refresh:
for demo in `ls src | grep demo | grep -v etherlink`; do cd src/$$demo && dipdup init -b -f && cd ../..; done
make format lint
before_release: ## Prepare for a new release after updating version in pyproject.toml
make format lint update demos test docs
jsonschemas: ## Dump config JSON schemas
python scripts/docs.py dump-jsonschema
git checkout origin/current schema.json
mv schema.json schemas/dipdup-2.0.json
##