]> git.immae.eu Git - github/wallabag/wallabag.git/blame - scripts/install.sh
Allow optional --ignore-root-warning
[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
c2bd272c
JD
5IGNORE_ROOT_ARG="--ignore-root-warning"
6IGNORE_ROOT=0
7
c01bda03
MT
8while :; do
9 case $1 in
10 $IGNORE_ROOT_ARG) IGNORE_ROOT=1
11 ;;
12 *[a-zA-Z]) ENV=$1
13 ;;
14 *) break
15 ;;
16 esac
17 shift
18done
c2bd272c 19
23aa47d8 20# Abort running this script if root
c2bd272c 21if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then
23aa47d8 22 echo "Do not run this script as root!" >&2
c2bd272c 23 echo "Use $IGNORE_ROOT_ARG to ignore this error." >&2
23aa47d8
JD
24 exit 1
25fi
26
c4d9a8d6
NL
27COMPOSER_COMMAND='composer'
28
038469e7 29DIR="${BASH_SOURCE}"
99692e8c 30if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
9998c725 31. "$DIR/require.sh"
c5ad143e 32
4e7863c6
NL
33TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
34
35git checkout $TAG
c4d9a8d6 36SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist
4e7863c6 37php bin/console wallabag:install --env=$ENV