From b8e1b7a020dba83bb4c4b31ac0290f761bcaf704 Mon Sep 17 00:00:00 2001 From: "a.y.volkov" Date: Thu, 2 Jun 2022 08:12:30 +0300 Subject: [PATCH] Fix PR comment. Signed-off-by: a.y.volkov --- README.md | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index f86c5c2..159e9e6 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,29 @@ Make sure you have installed all of the following prerequisites on your machine: ## Quick Start +Clone repo: ``` $ git clone https://github.com/nspcc-dev/neofs-dev-env.git -$ make get -$ make hosts ``` -Then add ```make hosts``` command output to /etc/hosts file. +Run next commands from project's root: +``` +$ make get +``` +This command downloads required artifacts. +``` +$ make hosts +192.168.130.10 bastion.neofs.devenv +192.168.130.50 main-chain.neofs.devenv +192.168.130.61 ir01.neofs.devenv +... +192.168.130.74 s04.neofs.devenv +``` + +This command shows addresses and hostnames of components. Add `make hosts` output to your local `/etc/hosts` file. + +Run all services with command: ``` $ make up ``` @@ -63,19 +78,6 @@ Enter account NNudMSGzEoktFzdYGYoNb3bzHzbmM1genF password > Sent invocation transaction 0e6eb5e190f36332e5e5f4e866c7e100826e285fd949e11c085e15224f343ba6 ``` -You can see the addresses and hostnames of components with `make hosts` command. - -``` -$ make hosts -192.168.130.10 bastion.neofs.devenv -192.168.130.50 main-chain.neofs.devenv -192.168.130.61 ir01.neofs.devenv -... -192.168.130.74 s04.neofs.devenv -``` - -It's recommended to add `make hosts` output to your local `/etc/hosts` file. - For instructions on how to set up DevEnv on macOS, please refer [the guide](docs/macOS.md) in `docs` directory.