]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - scripts/dev.sh
Merge pull request #2507 from wallabag/add-check-makefile
[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
5COMPOSER_COMMAND='composer'
6
7DIR="${BASH_SOURCE%/*}"
8if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi
9. "$DIR/require.sh"
10
11$COMPOSER_COMMAND install
12php bin/console wallabag:install
13php bin/console server:run