testnet-laconicd-stack/stack-orchestrator/config/laconic-faucet/start-faucet.sh

22 lines
420 B
Bash
Raw Normal View History

2024-07-16 06:15:17 +00:00
#!/bin/bash
set -e
set -u
2024-07-16 06:15:17 +00:00
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
set -x
fi
toml_file="./environments/local.toml"
2024-07-16 06:15:17 +00:00
# Set faucet key from env
faucet_key=${CERC_FAUCET_KEY}
echo "The faucet key is $faucet_key"
2024-07-16 06:15:17 +00:00
# Update the faucetKey in local.toml
sed -i "s/faucetKey = \"\"/faucetKey = \"$faucet_key\"/" "$toml_file"
echo "Updated faucetKey in local.toml"
# Start node-js server
yarn start-faucet
echo "Started faucet"