mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 01:58:00 +00:00
fcc1574aac
(git subtree add --prefix=bridges bridges master --squash)
12 lines
371 B
Bash
Executable File
12 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run a development instance of the Millau Substrate bridge node.
|
|
# To override the default port just export MILLAU_PORT=9945
|
|
|
|
MILLAU_PORT="${MILLAU_PORT:-9945}"
|
|
|
|
RUST_LOG=runtime=trace \
|
|
./target/debug/millau-bridge-node --dev --tmp \
|
|
--rpc-cors=all --unsafe-rpc-external --unsafe-ws-external \
|
|
--port 33044 --rpc-port 9934 --ws-port $MILLAU_PORT \
|