Prathamesh Musale
6b74477aff
Part of [Create a public laconicd testnet](https://www.notion.so/Create-a-public-laconicd-testnet-896a11bdd8094eff8f1b49c0be0ca3b8) Reviewed-on: #2 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
24 lines
499 B
Bash
Executable File
24 lines
499 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
set -e
|
|
|
|
# Create the required config file
|
|
config_file="/app/config.yml"
|
|
cat <<EOF > $config_file
|
|
services:
|
|
registry:
|
|
rpcEndpoint: ${CERC_LACONICD_RPC_ENDPOINT}
|
|
gqlEndpoint: ${CERC_LACONICD_GQL_ENDPOINT}
|
|
userKey: ${CERC_LACONICD_USER_KEY}
|
|
bondId: ${CERC_LACONICD_BOND_ID}
|
|
chainId: ${CERC_LACONICD_CHAIN_ID}
|
|
gas: ${CERC_LACONICD_GAS}
|
|
fees: ${CERC_LACONICD_FEES}
|
|
EOF
|
|
|
|
echo "Exported config to $config_file"
|