mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 14:17:46 +00:00
4331bc5712
Replace all make commands by a single "tutor" binary. Environment and data are all moved to ~/.tutor/local/share/tutor. We take the opportunity to add a web UI and revamp the documentation. This is a complete rewrite. Close #121. Close #147.
21 lines
778 B
Makefile
21 lines
778 B
Makefile
.DEFAULT_GOAL := help
|
||
|
||
compile-requirements: ## Compile requirements files
|
||
pip-compile -o requirements/base.txt requirements/base.in
|
||
pip-compile -o requirements/dev.txt requirements/dev.in
|
||
|
||
bundle: ## Bundle the tutor package in a single "dist/tutor" executable
|
||
pyinstaller --onefile --name=tutor --add-data=./tutor/templates:./tutor/templates ./bin/main
|
||
|
||
travis: bundle ## Run tests on travis-ci
|
||
./dist/tutor config noninteractive
|
||
./dist/tutor images env
|
||
./dist/tutor images build all
|
||
./dist/tutor local databases
|
||
|
||
ESCAPE =
|
||
help: ## Print this help
|
||
@grep -E '^([a-zA-Z_-]+:.*?## .*|######* .+)$$' Makefile \
|
||
| sed 's/######* \(.*\)/\n $(ESCAPE)[1;31m\1$(ESCAPE)[0m/g' \
|
||
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[33m%-30s\033[0m %s\n", $$1, $$2}'
|