X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Makefile;h=1df4d6327333a06ef399778f16810f413c6e2f24;hb=f48a6f3a542613d68d7f8d12dfe9abe397c48db2;hp=e99367f67222f1b6f58dc97884ee1e044664cf93;hpb=84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660;p=github%2Fwallabag%2Fwallabag.git diff --git a/Makefile b/Makefile index e99367f6..1df4d632 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`).