diff --git a/scripts/install.sh b/scripts/install.sh old mode 100644 new mode 100755 index f34f3ec..30cb295 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,19 +2,19 @@ #Backend Installation #Create virtual environment for the project -echo "Move Installation to Dockerfile" +#echo "Move Installation to Dockerfile" -#cd .. -#python3 -m venv venv +cd .. +python3 -m venv venv #Activate virtual environment -#source venv/bin/activate +source venv/bin/activate #Install required python pachages -#pip3 install -r requirements.txt +pip3 install -r requirements.txt #Frontend Installation -#npm install +npm install -#cd scripts +cd scripts