From da27c7f2d54030517c58f7a768cc2dc3e4a37afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Mon, 19 Sep 2022 13:42:37 +0200 Subject: [PATCH] fixed 'make run' : using tarantool instead of mongodb (#258) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fixed 'make run' : using tarantool instead of mongodb Signed-off-by: Jürgen Eckel * replaced mongodb by tarantool in the inline docs Signed-off-by: Jürgen Eckel Signed-off-by: Jürgen Eckel --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0f732e6..dd087db 100644 --- a/Makefile +++ b/Makefile @@ -57,10 +57,10 @@ help: ## Show this help @$(HELP) < $(MAKEFILE_LIST) run: check-deps ## Run Planetmint from source (stop it with ctrl+c) - # although planetmint has tendermint and mongodb in depends_on, + # although planetmint has tendermint and tarantool in depends_on, # launch them first otherwise tendermint will get stuck upon sending yet another log # due to some docker-compose issue; does not happen when containers are run as daemons - @$(DC) up --no-deps mongodb tendermint planetmint + @$(DC) up --no-deps tarantool tendermint planetmint start: check-deps ## Run Planetmint from source and daemonize it (stop with `make stop`) @$(DC) up -d planetmint @@ -143,4 +143,5 @@ ifndef IS_BLACK_INSTALLED @$(ECHO) @$(ECHO) "You need to activate your virtual environment and install the test dependencies" black # black is not installed, so we call it to generate an error and exit -endif \ No newline at end of file +endif +