diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-10-10 16:58:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-10 16:58:15 +0200 |
commit | bccf7a70bc22171904a5bb82d282e9c956684abc (patch) | |
tree | f03a771ac950296aa1a91af363784ec7915eac27 /scripts | |
parent | c99d90455bf2c3bac8a85cc0fdaf60134ae06cb4 (diff) | |
parent | fa4c39b37c1e1a1b52739a070775e9ba0fafe802 (diff) | |
download | wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.tar.gz wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.tar.zst wallabag-bccf7a70bc22171904a5bb82d282e9c956684abc.zip |
Merge pull request #2403 from wallabag/cleanup-install-process-in-doc
Cleaned up documentation for installation process
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/install.sh | 10 | ||||
-rw-r--r-- | scripts/release.sh | 19 | ||||
-rw-r--r-- | scripts/update.sh | 13 |
3 files changed, 42 insertions, 0 deletions
diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100644 index 00000000..54d0bb78 --- /dev/null +++ b/scripts/install.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | # You can execute this file to install wallabag | ||
3 | # eg: `sh install.sh prod` | ||
4 | |||
5 | ENV=$1 | ||
6 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
7 | |||
8 | git checkout $TAG | ||
9 | SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist | ||
10 | php bin/console wallabag:install --env=$ENV | ||
diff --git a/scripts/release.sh b/scripts/release.sh new file mode 100644 index 00000000..e118b87e --- /dev/null +++ b/scripts/release.sh | |||
@@ -0,0 +1,19 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | # You can execute this file to create a new package for wallabag | ||
3 | # eg: `sh release.sh master /tmp wllbg-release prod` | ||
4 | |||
5 | VERSION=$1 | ||
6 | TMP_FOLDER=$2 | ||
7 | RELEASE_FOLDER=$3 | ||
8 | ENV=$4 | ||
9 | |||
10 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | ||
11 | mkdir $TMP_FOLDER/$RELEASE_FOLDER | ||
12 | git clone git@github.com:wallabag/wallabag.git -b $VERSION $TMP_FOLDER/$RELEASE_FOLDER/$VERSION | ||
13 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && SYMFONY_ENV=$ENV composer up -n --no-dev | ||
14 | cd $TMP_FOLDER/$RELEASE_FOLDER/$VERSION && php bin/console wallabag:install --env=$ENV | ||
15 | cd $TMP_FOLDER/$RELEASE_FOLDER && tar czf wallabag-$VERSION.tar.gz --exclude="var/cache/*" --exclude="var/logs/*" --exclude="var/sessions/*" --exclude=".git" $VERSION | ||
16 | echo "MD5 checksum of the package for wallabag $VERSION" | ||
17 | md5 $TMP_FOLDER/$RELEASE_FOLDER/wallabag-$VERSION.tar.gz | ||
18 | scp $TMP_FOLDER/$RELEASE_FOLDER/wallabag-$VERSION.tar.gz framasoft_bag@78.46.248.87:/var/www/framabag.org/web | ||
19 | rm -rf $TMP_FOLDER/$RELEASE_FOLDER | ||
diff --git a/scripts/update.sh b/scripts/update.sh new file mode 100644 index 00000000..b920a829 --- /dev/null +++ b/scripts/update.sh | |||
@@ -0,0 +1,13 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | # You can execute this file to update wallabag | ||
3 | # eg: `sh update.sh prod` | ||
4 | |||
5 | ENV=$1 | ||
6 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
7 | |||
8 | rm -rf var/cache/* | ||
9 | git fetch origin | ||
10 | git fetch --tags | ||
11 | git checkout $TAG --force | ||
12 | SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist | ||
13 | php bin/console cache:clear --env=$ENV | ||