12 lines
192 B
Bash
12 lines
192 B
Bash
#!/bin/bash
|
|
|
|
# Activate the virtual environment
|
|
source venv/bin/activate
|
|
|
|
# Start the bot
|
|
echo "Starting the bot..."
|
|
python3 main.py
|
|
|
|
# Deactivate the virtual environment when done
|
|
deactivate
|