]> git.immae.eu Git - github/wallabag/wallabag.git/blame - GNUmakefile
Fix PG & Travis drop/create database
[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
13install: ## Install wallabag with the latest version
14 @./scripts/install.sh $(ENV)
15
16update: ## Update the wallabag installation to the latest version
17 @./scripts/update.sh $(ENV)
18
19dev: ## Install the latest dev version
20 @./scripts/dev.sh
21
22run: ## Run the wallabag built-in server
23 @php bin/console server:run --env=dev
24
25build: ## Run webpack
26 @npm run build:$(ENV)
27
6df8b9c6
JB
28prepare-travis-pg: ## Custom prepare for Travis & Postgres (do not drop/create the database)
29ifdef DB
30 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml
31endif
32 php bin/console doctrine:migrations:migrate --no-interaction --env=test
33
681e04b0
OM
34prepare: clean ## Prepare database for testsuite
35ifdef DB
36 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml
37endif
38 -php bin/console doctrine:database:drop --force --env=test
39 php bin/console doctrine:database:create --env=test
40 php bin/console doctrine:migrations:migrate --no-interaction --env=test
41
42fixtures: ## Load fixtures into database
43 php bin/console doctrine:fixtures:load --no-interaction --env=test
44
45test: prepare fixtures ## Launch wallabag testsuite
46 bin/simple-phpunit -v
47
48release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
49ifndef VERSION
50 $(error VERSION is not set)
51endif
52 @./scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
53
54deploy: ## Deploy wallabag
55 @bundle exec cap staging deploy
56
57.PHONY: help clean prepare install fixtures update build test release deploy run dev
58
59.DEFAULT_GOAL := install