From dcf200ce32ec359e7c8232eab0ee23a1d8bde60e Mon Sep 17 00:00:00 2001 From: FiveMovesAhead Date: Wed, 18 Dec 2024 18:46:30 +0800 Subject: [PATCH] Update readme with VERBOSE option. --- tig-benchmarker/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tig-benchmarker/README.md b/tig-benchmarker/README.md index 3fea29b..4285f64 100644 --- a/tig-benchmarker/README.md +++ b/tig-benchmarker/README.md @@ -7,14 +7,14 @@ Benchmarker for TIG. Expected setup is a single master and multiple slaves on di Simply run: ``` -export POSTGRES_USER=postgres -export POSTGRES_PASSWORD=mysecretpassword -export POSTGRES_DB=postgres - -export UI_PORT=80 -export DB_PORT=5432 -export MASTER_PORT=5115 - +POSTGRES_USER=postgres \ +POSTGRES_PASSWORD=mysecretpassword \ +POSTGRES_DB=postgres \ +UI_PORT=80 \ +DB_PORT=5432 \ +MASTER_PORT=5115 \ +# set VERBOSE=1 for debug master logs +VERBOSE= \ docker-compose up --build ```