Skip to content

Commit

Permalink
Add environment variables to control scripts/dev.sh behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
ldidry committed Oct 9, 2019
1 parent afe4865 commit 488e3d7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/dev.sh
Expand Up @@ -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

0 comments on commit 488e3d7

Please sign in to comment.