wallabag/scripts/dev.sh

21 lines
413 B
Bash
Raw Permalink Normal View History

2016-10-30 21:38:38 +00:00
#!/usr/bin/env bash
# You can execute this file to install wallabag dev environment
# eg: `sh dev.sh`
2016-10-27 08:09:43 +00:00
COMPOSER_COMMAND='composer'
REQUIRE_FILE='scripts/require.sh'
2016-10-27 08:09:43 +00:00
if [ ! -f "$REQUIRE_FILE" ]; then
echo "Cannot find $REQUIRE_FILE"
exit 1
fi
. "$REQUIRE_FILE"
2016-10-15 13:16:35 +00:00
2016-10-27 08:09:43 +00:00
$COMPOSER_COMMAND install
if [ -z "$SKIP_WALLABAG_INITIALIZATION" ]
then
php bin/console wallabag:install
fi
php bin/console server:run $HOST