generated from iotaledger/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
6,715 additions
and
1,914 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
IOTA_NODE_ENDPOINT= | ||
IOTA_NODE_AUTH_TOKEN= | ||
IOTA_SMR_NODE_ENDPOINT= | ||
IOTA_SMR_NODE_AUTH_TOKEN= | ||
IOTA_CUSTOM_NETWORK_NAME=rms | ||
IOTA_CUSTOM_NODE_ENDPOINT=https://api.testnet.shimmer.network | ||
IOTA_CUSTOM_NODE_AUTH_TOKEN= | ||
IOTA_CUSTOM_NODE_ENDPOINT= | ||
IOTA_CUSTOM_IDENTITY_PKG_ID= | ||
|
||
IOTA_MAINNET_IDENTITY_PKG_ID= | ||
IOTA_MAINNET_NODE_ENDPOINT= |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: "iota-private-network setup" | ||
description: "Setup IOTA Sandbox" | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Set up IOTA Node | ||
shell: bash | ||
run: | | ||
# Install dependencies | ||
mkdir -p iota | ||
cd iota | ||
# Use the output of https://api.github.com/repos/iotaledger/iota/releases/latest | ||
DOWNLOAD_URL=$(curl "https://api.github.com/repos/iotaledger/iota/releases" | jq -r '.[0].assets[] | select(.name | contains("iota") and contains("linux")) | .browser_download_url') | ||
# Download and extract | ||
curl -L -o iota.tar.gz $DOWNLOAD_URL | ||
tar -xzf iota.tar.gz | ||
- name: Start the Network | ||
shell: bash | ||
working-directory: iota | ||
run: ./iota start --with-faucet --force-regenesis & |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
/target | ||
|
||
|
||
.env |
Oops, something went wrong.