Add command to Makefile for quick access

This commit is contained in:
Vikash Kothary 2020-12-27 20:56:34 +00:00
parent 7cdc0855da
commit 029d94771b

7
Makefile Normal file → Executable file
View File

@ -37,6 +37,13 @@ init:
notebooks:
@${PYTHON} -m jupyter ${JUPYTER_OPTION}
%:
@test -f scripts/${*}.sh
@${SHELL} scripts/${*}.sh
.PHONY: release #: Tag and deploy to PyPI.
release:
@${SHELL} scripts/release.sh
.PHONY: open
open:
@${OPEN} http://127.0.0.1:27701