From f4dc9e15e1dcc365127728426fe0a60127fe2e7d Mon Sep 17 00:00:00 2001 From: David McDonald Date: Tue, 25 May 2021 11:21:39 +0100 Subject: [PATCH] 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 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8f6532575..b786512aa 100644 --- a/Makefile +++ b/Makefile @@ -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