2 RELEASE_FOLDER=wllbg-release
6 help: ## Display this help menu
7 @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
9 clean: ## Clear the application cache
12 install: ## Install wallabag with the latest version
13 @sh scripts/install.sh $(ENV)
15 update: ## Update the wallabag installation to the latest version
16 @sh scripts/update.sh $(ENV)
18 dev: ## Install the latest dev version
21 run: ## Run the wallabag built-in server
22 @php bin/console server:run --env=$(ENV)
27 prepare: clean ## Prepare database for testsuite
29 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml
31 -php bin/console doctrine:database:drop --force --env=test
32 php bin/console doctrine:database:create --env=test
33 php bin/console doctrine:migrations:migrate --no-interaction --env=test
35 fixtures: ## Load fixtures into database
36 php bin/console doctrine:fixtures:load --no-interaction --env=test
38 test: prepare fixtures ## Launch wallabag testsuite
41 release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
43 $(error VERSION is not set)
45 @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
47 deploy: ## Deploy wallabag
48 @bundle exec cap staging deploy
50 .PHONY: help clean prepare install fixtures update build test release deploy run dev
52 .DEFAULT_GOAL := install