Skip to content

Commit

Permalink
feat: implement kurtosis package to run encointer parachain local
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 1341758 commit c4325e0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions parachain/encointer.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
def run_encointer(plan, args):
exec_command = [
"bin/sh",
"-c",
"/usr/local/bin/encointer-collator --collator --tmp --chain encointer-rococo-local --rpc-port 9944 -- --execution=wasm --chain /app/rococo-local.json",
]
plan.add_service(
name = "encointer",
config = ServiceConfig(
image = "encointer/parachain:1.5.1",
files = {
"/app": "configs",
},
ports = {
"parachain": PortSpec(9944, transport_protocol = "TCP"),
},
entrypoint = exec_command,
),
)

0 comments on commit c4325e0

Please sign in to comment.