X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Makefile;h=b33352616488d2c8a2c3a13d674f73714184eaf1;hb=refs%2Fheads%2Frss2atom;hp=1c6c0d5373eceb362e0abbe6f7044b9c183dfd2c;hpb=7c1225347db8b516cc268709939f6b359bc283c1;p=github%2Fwallabag%2Fwallabag.git diff --git a/Makefile b/Makefile index 1c6c0d53..b3335261 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,8 +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 + @ant prepare && bin/simple-phpunit -v release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`). ifndef VERSION @@ -38,6 +40,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