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