Added start_server.sh finally

This commit is contained in:
MunyDev 2025-01-24 21:52:48 -05:00
parent 960e5574d0
commit 3d823ab099

17
start_server.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash
echo "$@"
SCRIPTDIR=$(readlink -f "$(dirname "$0")")
echo "Script directory: $SCRIPTDIR"
pushd "${SCRIPTDIR}" || exit
echo "now in scriptdir"
if [ ! -e ".venv" ]
then
python3 -m venv .venv
fi
source .venv/bin/activate
pip3 install -r requirements.txt &> /dev/null
python3 "$SCRIPTDIR"/server.py &
# echo "Server PID: $!"
echo $! > pid
popd || exit 0