]> git.immae.eu Git - github/wallabag/wallabag.git/blob - GNUmakefile
Improve check by using list
[github/wallabag/wallabag.git] / GNUmakefile
1 SHELL=bash
2 TMP_FOLDER=/tmp
3 RELEASE_FOLDER=wllbg-release
4
5 # ensure the ENV variable is well defined
6 AVAILABLE_ENV := prod dev test
7 ifneq ($(filter $(ENV),$(AVAILABLE_ENV)),)
8 # all good
9 else
10 # not good, force it to "prod"
11 override ENV = prod
12 endif
13
14 help: ## Display this help menu
15 @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
16
17 clean: ## Clear the application cache
18 rm -rf var/cache/*
19
20 install: customcss ## Install wallabag with the latest version
21 @./scripts/install.sh $(ENV)
22
23 update: ## Update the wallabag installation to the latest version
24 @./scripts/update.sh $(ENV)
25
26 dev: ENV=dev
27 dev: build customcss ## Install the latest dev version
28 @./scripts/dev.sh
29
30 run: ## Run the wallabag built-in server
31 @php bin/console server:run --env=dev
32
33 build: ## Run webpack
34 @npm install
35 @npm run build:$(ENV)
36
37 customcss:
38 @touch web/custom.css
39
40 prepare: clean ## Prepare database for testsuite
41 ifdef DB
42 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml
43 endif
44 -php bin/console doctrine:database:drop --force --env=test
45 php bin/console doctrine:database:create --env=test
46 php bin/console doctrine:migrations:migrate --no-interaction --env=test
47
48 fixtures: ## Load fixtures into database
49 php bin/console doctrine:fixtures:load --no-interaction --env=test
50
51 test: prepare fixtures ## Launch wallabag testsuite
52 bin/simple-phpunit -v
53
54 release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
55 ifndef VERSION
56 $(error VERSION is not set)
57 endif
58 @./scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
59
60 deploy: ## Deploy wallabag
61 @bundle exec cap staging deploy
62
63 .PHONY: help clean prepare install fixtures update build test release deploy run dev
64
65 .DEFAULT_GOAL := install