Add help text for new make steps

Helpful for when you run `make` as you've forgotten what the command is
and you don't want to go find the readme
This commit is contained in:
David McDonald
2021-05-25 11:21:39 +01:00
parent 2d2c82ca87
commit f4dc9e15e1

View File

@@ -23,12 +23,12 @@ VIRTUALENV_ROOT := $(shell [ -z $$VIRTUAL_ENV ] && echo $$(pwd)/venv || echo $$V
## DEVELOPMENT
.PHONY: bootstrap
bootstrap: generate-version-file
bootstrap: generate-version-file ## Set up everything to run the app
pip3 install -r requirements_for_test.txt
npm install && npm rebuild node-sass && npm run build
.PHONY: run-flask
run-flask:
run-flask: ## Run flask
. environment.sh && flask run -p 6012
.PHONY: help
@@ -52,7 +52,7 @@ test: ## Run tests
./scripts/run_tests.sh
.PHONY: fix-imports
fix-imports:
fix-imports: ## Fix imports using isort
isort -rc ./app ./tests
.PHONY: freeze-requirements