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