X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=GNUmakefile;h=865b35e8bd88f8342b510a2026cc2fe924f4e6f6;hb=68fd40e4fce33b19f946f54388a4016ab32998e0;hp=a04468cb1a6a9704440aadb7eb27fdaef0f22fee;hpb=fbdc665487bc5ea9fd46502be06a13ebc3e2fb4f;p=github%2Fwallabag%2Fwallabag.git diff --git a/GNUmakefile b/GNUmakefile index a04468cb..865b35e8 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -10,21 +10,26 @@ help: ## Display this help menu clean: ## Clear the application cache rm -rf var/cache/* -install: ## Install wallabag with the latest version +install: customcss ## Install wallabag with the latest version @./scripts/install.sh $(ENV) update: ## Update the wallabag installation to the latest version @./scripts/update.sh $(ENV) -dev: ## Install the latest dev version +dev: ENV=dev +dev: build customcss ## Install the latest dev version @./scripts/dev.sh run: ## Run the wallabag built-in server @php bin/console server:run --env=dev 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