e6f86843df
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
238 B
Bash
12 lines
238 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
mkdir -p /root/.electrum/wallets
|
|
|
|
echo "Starting Electrum daemon..."
|
|
rm -f /root/.electrum/daemon
|
|
electrum daemon -d
|
|
|
|
echo "Electrum daemon started. Launching bot..."
|
|
exec /opt/electrum/bin/python3 /app/bot.py
|