]>
Commit | Line | Data |
---|---|---|
1 | #! /usr/bin/env bash | |
2 | ||
3 | echo "Installing PHP dependencies (including dev) through Composer..." | |
4 | composer install | |
5 | ||
6 | echo "Downloading javascript librairies through npm..." | |
7 | npm install | |
8 | ||
9 | echo "Downloading fonts librairies through bower..." | |
10 | bower install | |
11 | ||
12 | echo "Concat, minify and installing assets..." | |
13 | grunt | |
14 | ||
15 | echo "Installing wallabag..." | |
16 | php bin/console wallabag:install |