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