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