From b971d223eab8d16239f3a29afe975d38e3dd54bd Mon Sep 17 00:00:00 2001 From: Stanislav Bogatyrev Date: Thu, 2 Jun 2022 09:38:55 +0300 Subject: [PATCH] Fix minor formatting issues Signed-off-by: Stanislav Bogatyrev --- README.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 159e9e6..e4f73ed 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Make sure you have installed all of the following prerequisites on your machine: ## Quick Start + Clone repo: ``` @@ -30,10 +31,7 @@ $ git clone https://github.com/nspcc-dev/neofs-dev-env.git ``` Run next commands from project's root: -``` -$ make get -``` -This command downloads required artifacts. + ``` $ make hosts 192.168.130.10 bastion.neofs.devenv @@ -43,24 +41,30 @@ $ make hosts 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. +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 ``` + When all services are up, you need to make GAS deposit for test wallet to be -able to pay for NeoFS operations. Test wallet is located in `wallets/wallet.json` -with the corresponding key in `wallets/wallet.key`. The password is empty. +able to pay for NeoFS operations. Test wallet is located in +`wallets/wallet.json` with the corresponding key in `wallets/wallet.key`. The +password is empty. ``` $ make prepare.ir password > fa6ba62bffb04030d303dcc95bda7413e03aa3c7e6ca9c2f999d65db9ec9b82c ``` -Also you should add self-signed node (`s04.neofs.devenv`) certificate to truststore -(default location might be changed using `CA_CERTS_TRUSTED_STORE` variable). -This step is required for client services (neofs-http-gw, neofs-s3-gw) to interact with the node: + +Also you should add self-signed node (`s04.neofs.devenv`) certificate to trusted +store (default location might be changed using `CA_CERTS_TRUSTED_STORE` +variable). This step is required for client services (neofs-http-gw, +neofs-s3-gw) to interact with the node: + ``` $ sudo make prepare.storage ```