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/install.sh | |
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/install.sh')
-rw-r--r-- | scripts/install.sh | 10 |
1 files changed, 10 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 | ||