Skip to content

Commit

Permalink
Feature/v8 installer development (#3310)
Browse files Browse the repository at this point in the history
* V8 DKG Core node installer

* installer update

* installer update
  • Loading branch information
Niks988 authored Oct 9, 2024
1 parent 904885f commit 9e15d91
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
81 changes: 81 additions & 0 deletions installer/data/template/.v8_origintrail_noderc_testnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"modules": {
"network": {
"enabled": true,
"implementation": {
"libp2p-service": {
"package": "./network/implementation/libp2p-service.js",
"config": {
"nat":{
"enabled":true,
"externalIp":"<SERVER_PUBLIC_IP>"
}
}
}
}
},
"blockchain": {
"implementation": {
"base:84532": {
"enabled": true,
"config": {
"sharesTokenSymbol": "<your_sharesTokenSymbol>",
"sharesTokenName": "<your_sharesTokenName>",
"rpcEndpoints": [
"RPC_ENDPOINT>"
],
"evmManagementWalletPublicKey": "MANAGEMENT_KEY_PUBLIC_ADDRESS",
"operationalWallets": [
{
"evmAddress": "<OPERATIONAL_KEY_PUBLIC_ADDRESS>",
"privateKey": "OPERATIONAL_KEY_PRIVATE_ADDRESS"
}
]
}
}
}
},
"tripleStore": {
"implementation": {
"ot-blazegraph": {
"enabled": true,
"package": "./triple-store/implementation/ot-blazegraph/ot-blazegraph.js",
"config": {
"repositories": {
"privateCurrent": {
"url": "http://localhost:9999",
"name": "private-current",
"username": "admin",
"password": ""
},
"privateHistory": {
"url": "http://localhost:9999",
"name": "private-history",
"username": "admin",
"password": ""
},
"publicCurrent": {
"url": "http://localhost:9999",
"name": "kb",
"username": "admin",
"password": ""
},
"publicHistory": {
"url": "http://localhost:9999",
"name": "public-history",
"username": "admin",
"password": ""
}
}
}
}
}
}
},
"auth": {
"ipWhitelist": [
"::1",
"127.0.0.1"
]
}
}
1 change: 1 addition & 0 deletions installer/v8_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ install_node

header_color $BGREEN"INSTALLATION COMPLETE !"

systemctl restart systemd-journald
journalctl -u otnode --output cat -fn 200

text_color $GREEN "
Expand Down

0 comments on commit 9e15d91

Please sign in to comment.