]> git.immae.eu Git - github/wallabag/wallabag.git/blob - Makefile
Added documentation about testsuite
[github/wallabag/wallabag.git] / Makefile
1 TMP_FOLDER=/tmp
2 RELEASE_FOLDER=wllbg-release
3
4 ifndef ENV
5 ENV=prod
6 endif
7
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}'
10
11 clean: ## Clear the application cache
12 @rm -rf var/cache/*
13
14 install: ## Install wallabag with the latest version
15 @sh scripts/install.sh $(ENV)
16
17 update: ## Update the wallabag installation to the latest version
18 @sh scripts/update.sh $(ENV)
19
20 run: ## Run the wallabag built-in server
21 @php bin/console server:run --env=$(ENV)
22
23 build: ## Run grunt
24 @grunt
25
26 test: ## Launch wallabag testsuite
27 @ant prepare && vendor/phpunit/phpunit/phpunit -v
28
29 release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
30 ifndef VERSION
31 $(error VERSION is not set)
32 endif
33 @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
34
35 travis: ## Make some stuff for Travis-CI
36
37 deploy: ## Deploy wallabag
38 @bundle exec cap staging deploy
39
40 .PHONY: help clean install update build test release travis deploy
41
42 .DEFAULT_GOAL := install