[ENHANCEMENT] Add run scripts #34

Merged
ElBe-Plaq merged 2 commits from dev into main 2023-01-12 09:21:35 +00:00
2 changed files with 9 additions and 0 deletions

4
run.bash Normal file
View File

@ -0,0 +1,4 @@
pip3 install -r requirements.txt || echo "PIP is required to install requirements.txt"
clear
cd Bot
python3 bot.py

5
run.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
pip install -r requirements.txt
cls
cd Bot
python bot.py