2020-01-02 13:30:08 +02:00

9 lines
172 B
Bash
Executable File

#!/bin/bash
source venv/bin/activate
echo "Checking queries..."
python -m unittest
echo "Starting Discord bot..."
python discord_bot.py &
sleep 10
disown -h %1
echo "Done!"