aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2018-11-25 09:58:18 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-11-25 09:58:18 +0100
commitb878be4cc99fd4927c70b59386cf7a57b33bb381 (patch)
tree9a5186ead93b9f6114b5341a7713f614eb58f6ec /Makefile
parente673b54f702f274a087e4feff409663d9636e57b (diff)
parentbffe65478de71113a16f6e7a7ef75845c9d61180 (diff)
downloadwallabag-b878be4cc99fd4927c70b59386cf7a57b33bb381.tar.gz
wallabag-b878be4cc99fd4927c70b59386cf7a57b33bb381.tar.zst
wallabag-b878be4cc99fd4927c70b59386cf7a57b33bb381.zip
Merge remote-tracking branch 'origin/master' into 2.4
# Conflicts: # web/wallassets/baggy.js # web/wallassets/manifest.json # web/wallassets/material.css # web/wallassets/material.js
Diffstat (limited to 'Makefile')
-rw-r--r--[-rwxr-xr-x]Makefile54
1 files changed, 2 insertions, 52 deletions
diff --git a/Makefile b/Makefile
index 0f4cbbe8..fefdd017 100755..100644
--- a/Makefile
+++ b/Makefile
@@ -1,52 +1,2 @@
1TMP_FOLDER=/tmp 1.DEFAULT:
2RELEASE_FOLDER=wllbg-release 2 gmake $@
3
4ENV ?= prod
5
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}'
8
9clean: ## Clear the application cache
10 rm -rf var/cache/*
11
12install: ## Install wallabag with the latest version
13 @sh scripts/install.sh $(ENV)
14
15update: ## Update the wallabag installation to the latest version
16 @sh scripts/update.sh $(ENV)
17
18dev: ## Install the latest dev version
19 @sh scripts/dev.sh
20
21run: ## Run the wallabag built-in server
22 @php bin/console server:run --env=dev
23
24build: ## Run webpack
25 @npm run build:$(ENV)
26
27prepare: clean ## Prepare database for testsuite
28ifdef DB
29 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml
30endif
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
34
35fixtures: ## Load fixtures into database
36 php bin/console doctrine:fixtures:load --no-interaction --env=test
37
38test: prepare fixtures ## Launch wallabag testsuite
39 bin/simple-phpunit -v
40
41release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
42ifndef VERSION
43 $(error VERSION is not set)
44endif
45 @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
46
47deploy: ## Deploy wallabag
48 @bundle exec cap staging deploy
49
50.PHONY: help clean prepare install fixtures update build test release deploy run dev
51
52.DEFAULT_GOAL := install