mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 09:31:04 +00:00
13 lines
286 B
Bash
Executable file
13 lines
286 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
echo "Installing PHP dependencies (including dev) through Composer..."
|
|
composer install
|
|
|
|
echo "Downloading librairies through npm..."
|
|
npm install
|
|
|
|
echo "Concat, minify and installing assets..."
|
|
grunt
|
|
|
|
echo "Installing wallabag..."
|
|
php bin/console wallabag:install
|