blob: fad8b4c092c0119ac444c9c39f7def63322431f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /usr/bin/env bash
echo " > Installing PHP dependencies through Composer..."
SYMFONY_ENV=prod 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"
|