mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-22 09:47:04 +01:00
fix AQUA URI
This commit is contained in:
parent
f1eedaed4e
commit
394d587983
@ -79,7 +79,7 @@ export ACCOUNTS_FOLDER="../accounts"
|
||||
export SECRET_STORE_URL=http://secret-store:12001
|
||||
export SIGNING_NODE_URL=http://secret-store-signing-node:8545
|
||||
|
||||
export AQUARIUS_URI=http://172.15.0.15:5000
|
||||
export AQUARIUS_URI=http://aquarius:5000
|
||||
|
||||
# Default Faucet options
|
||||
export FAUCET_TIMESPAN=${FAUCET_TIMESPAN:-24}
|
||||
@ -98,6 +98,16 @@ export COMMONS_FAUCET_URL=${FAUCET_URL}
|
||||
export LOCAL_USER_ID=$(id -u)
|
||||
export LOCAL_GROUP_ID=$(id -g)
|
||||
|
||||
|
||||
#add aquarius to /etc/hosts
|
||||
|
||||
if grep -q "aquarius" /etc/hosts; then
|
||||
echo "aquarius exists"
|
||||
else
|
||||
echo "127.0.0.1 aquarius" >> /etc/hosts;
|
||||
fi
|
||||
|
||||
|
||||
# colors
|
||||
COLOR_R="\033[0;31m" # red
|
||||
COLOR_G="\033[0;32m" # green
|
||||
|
Loading…
Reference in New Issue
Block a user