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

22 lines
382 B
Bash
Raw Normal View History

2024-07-16 06:15:17 +00:00
#!/bin/bash
set -e
if [ -n "$CERC_SCRIPT_DEBUG" ]; then
set -x
fi
set -u
yarn install
toml_file = "/app/environments/local.toml"
# Set faucet key from env
faucet_key = ${CERC_FAUCET_KEY}
# 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