Skip to content

Commit

Permalink
feat: implement kurtosis package for zeitgeist mainnet node setup (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana authored Nov 15, 2023
1 parent c349733 commit 708ea77
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions parachain/mainnet-setup/zietgeist.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
def run_zeitgeist(plan):
exec_command = [
"--chain=zeitgeist",
"--rpc-port=9933",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--unsafe-ws-external",
"--execution=wasm",
]
zeitgeist_service_config = ServiceConfig(
image = "zeitgeistpm/zeitgeist-node-parachain",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
"rpc": PortSpec(9933, transport_protocol = "TCP"),
},
cmd = exec_command,
entrypoint = ["/usr/local/bin/zeitgeist"]
)
plan.add_service(name = "zeitgeist-node", config = zeitgeist_service_config)

0 comments on commit 708ea77

Please sign in to comment.