27 lines
725 B
Bash
27 lines
725 B
Bash
#!/bin/bash
|
|
# Activate Bilbo Baggins Profile
|
|
|
|
echo "🧙♂️ Activating Bilbo Baggins..."
|
|
echo "================================"
|
|
|
|
export HOME=/root/wizards/bilbobagginshire
|
|
export HERMES_HOME=/root/wizards/bilbobagginshire/home
|
|
export BILBO_MODE=active
|
|
|
|
cd /root/wizards/bilbobagginshire
|
|
|
|
# Load environment
|
|
source home/.env
|
|
|
|
echo ""
|
|
echo "Bilbo Status:"
|
|
echo " Gitea User: bilbobagginshire"
|
|
echo " Repo: bilbobagginshire/bilbo-adventures"
|
|
echo " Anthropic OAuth: Configured (401 expected)"
|
|
echo " Webhook: Active on localhost:8643"
|
|
echo " Admin: Yes (reluctantly)"
|
|
echo ""
|
|
echo "Bilbo is ready for adventure... though he does miss his armchair."
|
|
echo ""
|
|
echo "To dispatch Bilbo: python3 home/bilbo_dispatcher.py"
|