aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-10-10 16:58:15 +0200
committerGitHub <noreply@github.com>2016-10-10 16:58:15 +0200
commitbccf7a70bc22171904a5bb82d282e9c956684abc (patch)
treef03a771ac950296aa1a91af363784ec7915eac27 /Makefile
parentc99d90455bf2c3bac8a85cc0fdaf60134ae06cb4 (diff)
parentfa4c39b37c1e1a1b52739a070775e9ba0fafe802 (diff)
downloadwallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.tar.gz
wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.tar.zst
wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.zip
Merge pull request #2403 from wallabag/cleanup-install-process-in-doc
Cleaned up documentation for installation process
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100755
index 00000000..1c6c0d53
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,43 @@
1TMP_FOLDER=/tmp
2RELEASE_FOLDER=wllbg-release
3
4ifndef ENV
5 ENV=prod
6endif
7
8help: ## 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
11clean: ## Clear the application cache
12 @rm -rf var/cache/*
13
14install: ## Install wallabag with the latest version
15 @sh scripts/install.sh $(ENV)
16
17update: ## Update the wallabag installation to the latest version
18 @sh scripts/update.sh $(ENV)
19
20run: ## Run the wallabag built-in server
21 @php bin/console server:run --env=$(ENV)
22
23build: ## Run grunt
24 @grunt
25
26test: ## Launch wallabag testsuite
27 @if [ ! -d "vendor/phpunit" ]; then composer install; fi
28 @ant prepare && vendor/phpunit/phpunit/phpunit -v
29
30release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
31ifndef VERSION
32 $(error VERSION is not set)
33endif
34 @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
35
36travis: ## Make some stuff for Travis-CI
37
38deploy: ## Deploy wallabag
39 @bundle exec cap staging deploy
40
41.PHONY: help clean install update build test release travis deploy
42
43.DEFAULT_GOAL := install