]> git.immae.eu Git - github/wallabag/wallabag.git/blob - install_dev.sh
cbd47495391158f2625a2897b560e11532ab61d1
[github/wallabag/wallabag.git] / install_dev.sh
1 #! /usr/bin/env bash
2
3 echo " > Installing PHP dependencies (including dev) through Composer..."
4 composer install -o --no-interaction --no-progress --prefer-dist
5
6 if [[ $ASSETS == 'build' || $TRAVIS_BUILD_DIR == '' ]]; then
7 echo " > Downloading librairies through npm..."
8 npm install
9
10 echo " > Concat, minify and installing assets..."
11 grunt
12 fi
13
14 echo " > Install finished"