mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
8 lines
203 B
Bash
8 lines
203 B
Bash
![]() |
#!/bin/sh
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
command -v shellcheck >/dev/null && shellcheck "$0"
|
||
|
|
||
|
cp -R "/template/.simapp" /root
|
||
|
mkdir -p /root/log
|
||
|
simd start --rpc.laddr tcp://0.0.0.0:26657 --trace
|