From baea15f554018f95ceb304c79df56bb91dae3545 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Fri, 9 Sep 2022 17:44:54 +0300 Subject: [PATCH] [#208] Move neofs-adm config to the repo root Signed-off-by: Alex Vanin --- Makefile | 4 ++-- services/ir/neofs-adm.yml => neofs-adm.yml | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename services/ir/neofs-adm.yml => neofs-adm.yml (100%) diff --git a/Makefile b/Makefile index 7522591..739e82b 100644 --- a/Makefile +++ b/Makefile @@ -72,8 +72,8 @@ up/basic: up/bootstrap .PHONY: up/bootstrap up/bootstrap: get vendor/hosts @$(foreach SVC, $(START_BOOTSTRAP), $(shell docker-compose -f services/$(SVC)/docker-compose.yml up -d)) - @./vendor/neofs-adm --config services/ir/neofs-adm.yml morph init --alphabet-wallets ./services/ir --contracts vendor/contracts || exit 1 - @for f in ./services/storage/wallet*.json; do echo "Transfer GAS to wallet $${f}" && ./vendor/neofs-adm -c services/ir/neofs-adm.yml morph refill-gas --storage-wallet $${f} --gas 10.0 --alphabet-wallets services/ir || exit 1; done + @./vendor/neofs-adm --config neofs-adm.yml morph init --alphabet-wallets ./services/ir --contracts vendor/contracts || exit 1 + @for f in ./services/storage/wallet*.json; do echo "Transfer GAS to wallet $${f}" && ./vendor/neofs-adm -c neofs-adm.yml morph refill-gas --storage-wallet $${f} --gas 10.0 --alphabet-wallets services/ir || exit 1; done @echo "NeoFS sidechain environment is deployed" # Build up certain service diff --git a/services/ir/neofs-adm.yml b/neofs-adm.yml similarity index 100% rename from services/ir/neofs-adm.yml rename to neofs-adm.yml