Skip to content

Commit

Permalink
feat: implement kurtosis package to run phala parachain local
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 86025cb commit 36e8c6b
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 36e8c6b

Please sign in to comment.