X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Makefile;h=ffbe102a045c05f09ca3201322592e3ff153a111;hb=5872cd191c11e9c24fd0014fa3e2d8e7671b43b2;hp=1c6c0d5373eceb362e0abbe6f7044b9c183dfd2c;hpb=b1b561da518ae3add4445c46ef8398a314c8de37;p=github%2Fwallabag%2Fwallabag.git diff --git a/Makefile b/Makefile index 1c6c0d53..ffbe102a 100755 --- a/Makefile +++ b/Makefile @@ -17,15 +17,17 @@ 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) -build: ## Run grunt - @grunt +build: ## Run webpack + @npm run build:$(ENV) 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