]> git.immae.eu Git - github/wallabag/wallabag.git/blame - scripts/install.sh
Added a check in Makefile to see if composer is installed
[github/wallabag/wallabag.git] / scripts / install.sh
CommitLineData
4e7863c6 1#! /usr/bin/env bash
7c122534
NL
2# You can execute this file to install wallabag
3# eg: `sh install.sh prod`
4e7863c6 4
c5ad143e
NL
5command -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
4e7863c6
NL
7ENV=$1
8TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
9
10git checkout $TAG
11SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
12php bin/console wallabag:install --env=$ENV