Merge pull request #34 from ElBe-Development/dev

[ENHANCEMENT] Add run scripts
This commit is contained in:
ElBe 2023-01-12 10:21:34 +01:00 committed by GitHub
commit 2ce1ceee43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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