Merge pull request #4152 from ldidry/add-env-var-dev.sh

Add environment variables to control scripts/dev.sh behavior
This commit is contained in:
Jérémy Benoist 2019-11-19 14:24:35 +01:00 committed by GitHub
commit 8668796106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,5 +13,8 @@ fi
. "$REQUIRE_FILE"
$COMPOSER_COMMAND install
php bin/console wallabag:install
php bin/console server:run
if [ -z "$SKIP_WALLABAG_INITIALIZATION" ]
then
php bin/console wallabag:install
fi
php bin/console server:run $HOST