aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-09 21:50:15 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-10-09 21:50:15 +0200
commit4e7863c6aa0010c22e471a84859217e1ca8227b8 (patch)
tree44b864002cc5240adce343e6dee22fbffb7a672e /Makefile
parent26490a8794e762a77bb0439790db641a222fb0ef (diff)
downloadwallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.gz
wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.tar.zst
wallabag-4e7863c6aa0010c22e471a84859217e1ca8227b8.zip
Created scripts folder to store update/install/release process
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile29
1 files changed, 3 insertions, 26 deletions
diff --git a/Makefile b/Makefile
index a4a06e3f..f7f6138d 100755
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,6 @@
1TMP_FOLDER=/tmp 1TMP_FOLDER=/tmp
2RELEASE_FOLDER=wllbg-release 2RELEASE_FOLDER=wllbg-release
3 3
4SSH_USER=framasoft_bag
5SSH_HOST=78.46.248.87
6SSH_PATH=/var/www/framabag.org/web
7
8ENV=prod 4ENV=prod
9 5
10help: ## Display this help menu 6help: ## Display this help menu
@@ -14,19 +10,10 @@ clean: ## Clear the application cache
14 @rm -rf var/cache/* 10 @rm -rf var/cache/*
15 11
16install: ## Install wallabag with the latest version 12install: ## Install wallabag with the latest version
17 TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) 13 @sh scripts/install.sh $(ENV)
18 @git checkout $(TAG)
19 @SYMFONY_ENV=$(ENV) composer install --no-dev -o --prefer-dist
20 @php bin/console wallabag:install --env=$(ENV)
21 14
22update: ## Update the wallabag installation to the latest version 15update: ## Update the wallabag installation to the latest version
23 @rm -rf var/cache/* 16 @sh scripts/update.sh $(ENV)
24 @git fetch origin
25 @git fetch --tags
26 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
27 @git checkout $(TAG)
28 @SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
29 @php bin/console cache:clear --env=prod
30 17
31run: ## Run the wallabag server 18run: ## Run the wallabag server
32 php bin/console server:run --env=$(ENV) 19 php bin/console server:run --env=$(ENV)
@@ -41,17 +28,7 @@ release: ## Create a package. Need a VERSION parameter (eg: `make release VERSIO
41ifndef VERSION 28ifndef VERSION
42 $(error VERSION is not set) 29 $(error VERSION is not set)
43endif 30endif
44 version=$(VERSION) 31 @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
45 @rm -rf $(TMP_FOLDER)/$(RELEASE_FOLDER)
46 @mkdir $(TMP_FOLDER)/$(RELEASE_FOLDER)
47 @git clone git@github.com:wallabag/wallabag.git -b $(VERSION) $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION)
48 @cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && SYMFONY_ENV=$(ENV) composer up -n --no-dev
49 @cd $(TMP_FOLDER)/$(RELEASE_FOLDER)/$(VERSION) && php bin/console wallabag:install --env=$(ENV)
50 @cd $(TMP_FOLDER)/$(RELEASE_FOLDER) && tar czf wallabag-$(VERSION).tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $(VERSION)
51 @echo "MD5 checksum of the package for wallabag $(VERSION)"
52 @md5 $(TMP_FOLDER)/$(RELEASE_FOLDER)/wallabag-$(VERSION).tar.gz
53 @scp $(TMP_FOLDER)/$(RELEASE_FOLDER)/wallabag-$(VERSION).tar.gz $(SSH_USER)@$(SSH_HOST):$(SSH_PATH)
54 @rm -rf $(TMP_FOLDER)/$(RELEASE_FOLDER)
55 32
56travis: ## Make some stuff for Travis-CI 33travis: ## Make some stuff for Travis-CI
57 34