X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=blobdiff_plain;f=GNUmakefile;h=a04468cb1a6a9704440aadb7eb27fdaef0f22fee;hp=865b35e8bd88f8342b510a2026cc2fe924f4e6f6;hb=HEAD;hpb=7a4c375ebfae5aa43c663b1084acfb68f61b30b8 diff --git a/GNUmakefile b/GNUmakefile index 865b35e8..d0894dbb 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -2,7 +2,14 @@ SHELL=bash TMP_FOLDER=/tmp RELEASE_FOLDER=wllbg-release -ENV ?= prod +# ensure the ENV variable is well defined +AVAILABLE_ENV := prod dev test +ifneq ($(filter $(ENV),$(AVAILABLE_ENV)),) + # all good +else + # not good, force it to "prod" + override ENV = prod +endif help: ## Display this help menu @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' @@ -10,14 +17,14 @@ help: ## Display this help menu clean: ## Clear the application cache rm -rf var/cache/* -install: customcss ## Install wallabag with the latest version +install: ## Install wallabag with the latest version @./scripts/install.sh $(ENV) update: ## Update the wallabag installation to the latest version @./scripts/update.sh $(ENV) dev: ENV=dev -dev: build customcss ## Install the latest dev version +dev: build ## Install the latest dev version @./scripts/dev.sh run: ## Run the wallabag built-in server @@ -27,9 +34,6 @@ build: ## Run webpack @npm install @npm run build:$(ENV) -customcss: - @touch web/custom.css - prepare: clean ## Prepare database for testsuite ifdef DB cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml