Add linux shell scripts to configure dependencies automatically

This commit is contained in:
hteppl
2024-12-06 18:39:35 +03:00
parent e44f7b1cd1
commit 97f4bc8104
2 changed files with 34 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/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