Skip to content

Commit

Permalink
feat: implement kurtosis package to run phala parachain local (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: Shreyas S Bhat <[email protected]>
  • Loading branch information
shanithkk and shreyasbhat0 authored Oct 30, 2023
1 parent 7ba8280 commit 1341758
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions parachain/khala.star
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,23 @@ def run_khala(plan, args):
entrypoint = exec_command,
),
)

def run_phala(plan, args):
exec_command = [
"/bin/sh",
"-c",
"/usr/local/bin/khala-node --chain=phala-dev-2035 --ws-external --rpc-external --rpc-cors=all --name=parachain-2010-0 --collator --rpc-methods=unsafe --force-authoring --execution=wasm --alice -- --chain=/app/rococo-local.json --execution=wasm",
]
plan.add_service(
name = "phala",
config = ServiceConfig(
image = "phalanetwork/phala-node:latest",
ports = {
"parachain": PortSpec(9944, transport_protocol = "TCP"),
},
files = {
"/app": "configs",
},
entrypoint = exec_command,
),
)

0 comments on commit 1341758

Please sign in to comment.