X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Makefile;h=83c5f37ad78610d12e49211d3f6c0fc1b8bb752f;hb=4b5e95c0e52d0627f33cae7cb5f486a53561f5c0;hp=e99367f67222f1b6f58dc97884ee1e044664cf93;hpb=84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660;p=github%2Fwallabag%2Fwallabag.git diff --git a/Makefile b/Makefile index e99367f6..83c5f37a 100755 --- a/Makefile +++ b/Makefile @@ -17,6 +17,9 @@ install: ## Install wallabag with the latest version update: ## Update the wallabag installation to the latest version @sh scripts/update.sh $(ENV) +dev: ## Install the latest dev version + @sh scripts/dev.sh + run: ## Run the wallabag built-in server @php bin/console server:run --env=$(ENV) @@ -24,6 +27,7 @@ build: ## Run grunt @grunt test: ## Launch wallabag testsuite + @if [ ! -d "vendor/phpunit" ]; then composer install; fi @ant prepare && vendor/phpunit/phpunit/phpunit -v release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`). @@ -37,6 +41,6 @@ travis: ## Make some stuff for Travis-CI deploy: ## Deploy wallabag @bundle exec cap staging deploy -.PHONY: help clean install update build test release travis deploy +.PHONY: help clean install update build test release travis deploy run dev .DEFAULT_GOAL := install