diff options
Diffstat (limited to 'scripts/dev.sh')
-rw-r--r-- | scripts/dev.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/dev.sh b/scripts/dev.sh index 9b89da35..fa3b2d5d 100644 --- a/scripts/dev.sh +++ b/scripts/dev.sh | |||
@@ -1,7 +1,13 @@ | |||
1 | #! /usr/bin/env bash | 1 | #! /usr/bin/env bash |
2 | # You can execute this file to install wallabag dev environmnet | 2 | # You can execute this file to install wallabag dev environment |
3 | # eg: `sh install.sh prod` | 3 | # eg: `sh dev.sh` |
4 | 4 | ||
5 | composer install | 5 | COMPOSER_COMMAND='composer' |
6 | |||
7 | DIR="${BASH_SOURCE%/*}" | ||
8 | if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi | ||
9 | . "$DIR/require.sh" | ||
10 | |||
11 | $COMPOSER_COMMAND install | ||
6 | php bin/console wallabag:install | 12 | php bin/console wallabag:install |
7 | php bin/console server:run | 13 | php bin/console server:run |