diff --git a/start.sh b/start.sh old mode 100644 new mode 100755 index e69de29..e088e61 --- a/start.sh +++ b/start.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +if [ "$1" == "prepare" ] +then + echo "Preparing your system for the first run" + apt update -y && apt upgrade -y + apt install python3.7 python3-pip -y + pip3 install setuptools wheel regex + pip3 install -r requirements.txt +else + python3 main.py "$@" +fi \ No newline at end of file