clean makefile

This commit is contained in:
Jim Moffet
2022-06-13 14:31:51 -07:00
parent 2b727e13b4
commit 18eefc87c0

View File

@@ -28,18 +28,13 @@ bootstrap: generate-version-file ## Set up everything to run the app
source $(HOME)/.nvm/nvm.sh && nvm install && npm ci --no-audit
source $(HOME)/.nvm/nvm.sh && npm run build
.PHONY: bootstrap-with-docker
bootstrap-with-docker: generate-version-file ## Set up everything to run the app
# npm ci --no-audit
npm run build
.PHONY: watch-frontend
watch-frontend: ## Build frontend and watch for changes
npm run watch
.PHONY: run-flask
run-flask: ## Run flask
flask run -p 6012
flask run -p 6012 --host=0.0.0.0
.PHONY: npm-audit
npm-audit: ## Check for vulnerabilities in NPM packages