-
Notifications
You must be signed in to change notification settings - Fork 86
/
Makefile
47 lines (35 loc) · 1.57 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
# ----------------------------------------------------------------------------
# Self-Documented Makefile
# ref: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
# ----------------------------------------------------------------------------
.PHONY: help
.DEFAULT_GOAL := help
help: ## ⁉️ - Display help comments for each make command
@grep -E '^[0-9a-zA-Z_-]+:.*? .*$$' \
$(MAKEFILE_LIST) \
| awk 'BEGIN { FS=":.*?## " }; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' \
| sort
npm_deps: ## 🧰 - Install npm dependencies
npm install
build: npm_deps ## 🧰 - Build front-end assets
npm run build
dev: npm_deps ## 🧰 - Build front-end assets and watch for changes in development mode
npm run start
messages: ## 🔨 - Make messages
node ./scripts/extract-translatable-strings.js
cd wagtail_localize && python ../testmanage.py makemessages --locale=en
fetch-translations: ## 🔨 - Fetch new translations
./scripts/fetch-translations.sh
compile-messages: ## 🔨 - Compile messages
cd wagtail_localize && python ../testmanage.py compilemessages
translations: build messages fetch-translations compile-messages ## 🌍 - Prepare translations
clean: ## 🗑️ - Remove __pycache__ and test artifacts
@echo "🗑️ - Removing __pycache__ and test artifacts"
find . -name ".tox" -prune -o -type d -name "__pycache__" -exec rm -r {} +
package-setup:
@echo "📦 - Packaging for PyPI"
flit build --setup-py
package: clean package-setup ## 📦 - Package for PyPI
test: ## 🧪 - Run test suite
@echo "🧪 - Running test suite"
tox