]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - scripts/dev.sh
Added require.sh to check if composer is installed
[github/wallabag/wallabag.git] / scripts / dev.sh
... / ...
CommitLineData
1#! /usr/bin/env bash
2# You can execute this file to install wallabag dev environment
3# eg: `sh dev.sh`
4
5DIR="${BASH_SOURCE%/*}"
6if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi
7. "$DIR/require.sh"
8
9composer install
10php bin/console wallabag:install
11php bin/console server:run