BotDC / termux_setup.sh
Gabeczkag's picture
Update bot
0812aec
Raw
History Blame Contribute Delete
428 Bytes
#!/bin/bash
echo "=== Instalacja bota na Termux ==="
pkg update -y && pkg upgrade -y
pkg install python git screen -y
cd ~
git clone https://huggingface.co/spaces/Gabeczkag/BotDC
cd BotDC
pip install discord.py python-dotenv
read -p "Podaj token Discorda: " token
echo "DISCORD_TOKEN=$token" > .env
echo "=== Gotowe! Uruchamianie bota... ==="
screen -dmS bot python bot.py
echo "Bot działa w tle. screen -r bot by wrocic"