]>
Commit | Line | Data |
---|---|---|
038469e7 | 1 | #!/usr/bin/env bash |
9998c725 NL |
2 | # You can execute this file to install wallabag dev environment |
3 | # eg: `sh dev.sh` | |
4 | ||
c4d9a8d6 NL |
5 | COMPOSER_COMMAND='composer' |
6 | ||
038469e7 | 7 | DIR="${BASH_SOURCE}" |
99692e8c | 8 | if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi |
9998c725 | 9 | . "$DIR/require.sh" |
f48a6f3a | 10 | |
c4d9a8d6 | 11 | $COMPOSER_COMMAND install |
f48a6f3a TC |
12 | php bin/console wallabag:install |
13 | php bin/console server:run |