We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ff1422 + 764a26d commit a326680Copy full SHA for a326680
docker-compose.yml
@@ -12,6 +12,7 @@ services:
12
container_name: "antelope"
13
ports:
14
- 8888:8888
15
+ - 9876:9876
16
volumes:
17
- antelope-data:/data
18
scripts/helpers.sh
@@ -110,6 +110,12 @@ function init {
110
sleep 8
111
112
cd "$SDK_PATH"
113
+ NODE_ENV="${NODE_ENV:-development}"
114
+ if [[ "${NODE_ENV}" == "development" ]]
115
+ then
116
+ echo "Using development environment: setting keys"
117
+ source ./test/export_test_keys.sh
118
+ fi
119
yarn run cli bootstrap
120
121
echo ""
0 commit comments