wallabag/scripts/dev.sh

18 lines
353 B
Bash
Raw 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
2016-10-15 13:16:35 +00:00
php bin/console wallabag:install
php bin/console server:run