]> git.immae.eu Git - github/wallabag/wallabag.git/blob - scripts/install.sh
Abort running install and update script if root (closes #3590)
[github/wallabag/wallabag.git] / scripts / install.sh
1 #!/usr/bin/env bash
2 # You can execute this file to install wallabag
3 # eg: `sh install.sh prod`
4
5 # Abort running this script if root
6 if [ "$EUID" == "0" ]; then
7 echo "Do not run this script as root!" >&2
8 exit 1
9 fi
10
11 COMPOSER_COMMAND='composer'
12
13 DIR="${BASH_SOURCE}"
14 if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
15 . "$DIR/require.sh"
16
17 ENV=$1
18 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
19
20 git checkout $TAG
21 SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
22 php bin/console wallabag:install --env=$ENV