Move bootstrap tasks into the Makefile

This is more consistent with how we run all other tasks. Note that
the virtual env setup is not generally applicable, and developers
of this repo should follow the guidance in the README.
This commit is contained in:
Ben Thorner
2021-02-22 16:53:54 +00:00
parent f6cdf999fe
commit dfb767d57e
3 changed files with 6 additions and 35 deletions

View File

@@ -22,6 +22,11 @@ VIRTUALENV_ROOT := $(shell [ -z $$VIRTUAL_ENV ] && echo $$(pwd)/venv || echo $$V
## DEVELOPMENT
.PHONY: bootstrap
bootstrap: generate-version-file
pip3 install -r requirements_for_test.txt
npm install && npm run build
.PHONY: run-flask
run-flask:
. environment.sh && flask run -p 6012