From 70fbca857ddcd0702380ab2aaf4663644baf4be2 Mon Sep 17 00:00:00 2001 From: Sebastian Gerske Date: Thu, 11 Oct 2018 14:33:30 +0200 Subject: [PATCH] added reuse-database to readme and added log to start ocean --- README.md | 1 + start_ocean.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 5770ca5..b90eb39 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ Option | Description `--latest` | Get the `latest` versions of all components, referring to their `develop` branches. `--no-pleuston` | Start up Ocean without an instance of `pleuston`. Helpful for development on `pleuston`. `--local-parity-node` | Runs a local parity POA node instead of ganache-cli. +`--reuse-database` | Start up Ocean and reuse the Database from ganache. Helpful for development. ## Ocean Protocol components diff --git a/start_ocean.sh b/start_ocean.sh index 42cdce8..6b5ff17 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -40,6 +40,7 @@ while :; do ;; --reuse-database) export REUSE_DATABASE="true" + printf $COLOR_Y'Starting and reusing the database ...\n\n'$COLOR_RESET ;; --no-pleuston) COMPOSE_FILE='docker-compose-no-pleuston.yml'