aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorLuc Didry <luc@didry.org>2019-10-09 19:33:27 +0200
committerLuc Didry <luc@didry.org>2019-10-09 19:33:27 +0200
commit488e3d7a915dcdce37fe4af14f33293edcb4fbdb (patch)
tree04e1045e496b20c4eb28e100d281900b1bc67611 /scripts
parentafe486531d4dfffff7522efecdff1bcf18d13994 (diff)
downloadwallabag-488e3d7a915dcdce37fe4af14f33293edcb4fbdb.tar.gz
wallabag-488e3d7a915dcdce37fe4af14f33293edcb4fbdb.tar.zst
wallabag-488e3d7a915dcdce37fe4af14f33293edcb4fbdb.zip
Add environment variables to control scripts/dev.sh behavior
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev.sh7
1 files changed, 5 insertions, 2 deletions
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
13. "$REQUIRE_FILE" 13. "$REQUIRE_FILE"
14 14
15$COMPOSER_COMMAND install 15$COMPOSER_COMMAND install
16php bin/console wallabag:install 16if [ -z "$SKIP_WALLABAG_INITIALIZATION" ]
17php bin/console server:run 17then
18 php bin/console wallabag:install
19fi
20php bin/console server:run $HOST