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