]> git.immae.eu Git - github/wallabag/wallabag.git/blob - scripts/install.sh
Added a check in Makefile to see if composer is installed
[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 command -v composer >/dev/null 2>&1 || { echo >&2 "wallabag requires composer but it's not installed (see http://doc.wallabag.org/en/master/user/installation.html). Aborting."; exit 1; }
6
7 ENV=$1
8 TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
9
10 git checkout $TAG
11 SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
12 php bin/console wallabag:install --env=$ENV