2 RELEASE_FOLDER=wllbg-release
8 help: ## Display this help menu
9 @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
11 clean: ## Clear the application cache
14 install: ## Install wallabag with the latest version
15 @sh scripts/install.sh $(ENV)
17 update: ## Update the wallabag installation to the latest version
18 @sh scripts/update.sh $(ENV)
20 dev: ## Install the latest dev version
23 run: ## Run the wallabag built-in server
24 @php bin/console server:run --env=$(ENV)
29 test: ## Launch wallabag testsuite
30 @ant prepare && bin/simple-phpunit -v
32 release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
34 $(error VERSION is not set)
36 @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
38 travis: ## Make some stuff for Travis-CI
40 deploy: ## Deploy wallabag
41 @bundle exec cap staging deploy
43 .PHONY: help clean install update build test release travis deploy run dev
45 .DEFAULT_GOAL := install