]>
Commit | Line | Data |
---|---|---|
d8507add NL |
1 | TMP_FOLDER=/tmp |
2 | RELEASE_FOLDER=wllbg-release | |
3 | ||
84e3c36e NL |
4 | ifndef ENV |
5 | ENV=prod | |
6 | endif | |
46aeaab8 | 7 | |
26490a87 NL |
8 | help: ## 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}' | |
d8507add | 10 | |
26490a87 | 11 | clean: ## Clear the application cache |
46aeaab8 NL |
12 | @rm -rf var/cache/* |
13 | ||
26490a87 | 14 | install: ## Install wallabag with the latest version |
4e7863c6 | 15 | @sh scripts/install.sh $(ENV) |
d8507add | 16 | |
26490a87 | 17 | update: ## Update the wallabag installation to the latest version |
4e7863c6 | 18 | @sh scripts/update.sh $(ENV) |
46aeaab8 | 19 | |
f48a6f3a TC |
20 | dev: ## Install the latest dev version |
21 | @sh scripts/dev.sh | |
22 | ||
84e3c36e NL |
23 | run: ## Run the wallabag built-in server |
24 | @php bin/console server:run --env=$(ENV) | |
d8507add | 25 | |
5385fda8 NH |
26 | build: ## Run webpack |
27 | @npm run build:$(ENV) | |
d8507add | 28 | |
26490a87 | 29 | test: ## Launch wallabag testsuite |
89cd670a | 30 | @ant prepare && bin/simple-phpunit -v |
d8507add | 31 | |
26490a87 NL |
32 | release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`). |
33 | ifndef VERSION | |
34 | $(error VERSION is not set) | |
35 | endif | |
4e7863c6 | 36 | @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV) |
d8507add | 37 | |
26490a87 | 38 | travis: ## Make some stuff for Travis-CI |
46aeaab8 | 39 | |
26490a87 | 40 | deploy: ## Deploy wallabag |
46aeaab8 NL |
41 | @bundle exec cap staging deploy |
42 | ||
c5ad143e | 43 | .PHONY: help clean install update build test release travis deploy run dev |
02edf070 NL |
44 | |
45 | .DEFAULT_GOAL := install |