Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 9438754 commit cc2c945
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions parachain/kylin.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
def run_kylin(plan, args):
exec_command = ["--base-path=/kylin/data", "--chain=dev", "--ws-external", "--rpc-external", "--rpc-cors=all", "--name=parachain-2010-0", "--collator", "--rpc-methods=unsafe", "--force-authoring", "--execution=wasm", "--alice", "--node-key=52194369e4c881e4157b74fd00dff4241e50b8100b823273e25c868a70e5cde8", "--", "--chain=/app/rococo-local.json", "--execution=wasm"]
plan.add_service(
name = "kylin",
config = ServiceConfig(
image = "kylinnetworks/kylin-collator:ro-v0.9.30",
files = {
"/app": "output",
},
ports = {
"parachain": PortSpec(9944, transport_protocol = "TCP"),
},
cmd = exec_command,
),
)

0 comments on commit cc2c945

Please sign in to comment.