From: Luc Didry Date: Wed, 9 Oct 2019 17:33:27 +0000 (+0200) Subject: Add environment variables to control scripts/dev.sh behavior X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=488e3d7a915dcdce37fe4af14f33293edcb4fbdb Add environment variables to control scripts/dev.sh behavior --- diff --git a/scripts/dev.sh b/scripts/dev.sh index 28453be0..cc465cf9 100755 --- a/scripts/dev.sh +++ b/scripts/dev.sh @@ -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