]> git.immae.eu Git - github/wallabag/wallabag.git/blob - install.sh
👋 HHVM
[github/wallabag/wallabag.git] / install.sh
1 #! /usr/bin/env bash
2
3 echo " > Installing PHP dependencies through Composer..."
4 SYMFONY_ENV=prod composer install --no-interaction --no-progress --prefer-dist -o --no-dev
5
6 chmod ugo+x vendor/mouf/nodejs-installer/bin/local/npm
7 echo " > Downloading librairies through npm..."
8 vendor/mouf/nodejs-installer/bin/local/npm install
9
10 echo " > Concat, minify and installing assets..."
11 node_modules/grunt/bin/grunt
12
13 echo " > Install finished"