-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from skalenetwork/remove-network-ui
Remove network-ui submodule, update readme
- Loading branch information
Showing
6 changed files
with
9 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule helper-scripts
updated
6 files
+4 −0 | calculate_version.sh | |
+0 −0 | deploy_ima.sh | |
+0 −0 | deploy_manager.sh | |
+0 −0 | deploy_test_ima.sh | |
+0 −0 | deploy_test_manager.sh | |
+23 −7 | helper.sh |
Submodule network-ui
deleted from
793746
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
#!/bin/bash | ||
|
||
export DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | ||
set -e | ||
|
||
export NETWORKS=$NETWORKS | ||
export DOCS_WEBSITE_URL=$DOCS_WEBSITE_URL | ||
export MAIN_WEBSITE_URL=$MAIN_WEBSITE_URL | ||
export NETWORK_NAME=$NETWORK_NAME | ||
export CHAIN_ID=$CHAIN_ID | ||
export EXPLORER_URL=$EXPLORER_URL | ||
export BASE_PROXY_URL=$BASE_PROXY_URL | ||
export ABIS_URL=$ABIS_URL | ||
export DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | ||
|
||
bash $DIR/../network-ui/prepare_env_file.sh | ||
: "${ENDPOINT?Need to set ENDPOINT}" | ||
: "${SERVER_NAME?Need to set SERVER_NAME}" | ||
|
||
cd $DIR/.. | ||
docker-compose up --build -d |