wallabag/install.sh
Jeremy Benoist 4ac780eb21
Use install_dev.sh for Travis
Add `--no-dev` to `composer install` for prod env
2016-10-03 14:35:42 +02:00

13 lines
417 B
Bash
Executable file

#! /usr/bin/env bash
echo " > Installing PHP dependencies through Composer..."
composer install --no-interaction --no-progress --prefer-dist -o --no-dev
chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm
echo " > Downloading librairies through npm..."
vendor/mouf/nodejs-installer/bin/local/npm install
echo " > Concat, minify and installing assets..."
node_modules/grunt/bin/grunt
echo " > Install finished"