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