Delete run_server.sh

Deleted old shell script
This commit is contained in:
mirai 2023-09-06 02:26:33 +03:00 committed by GitHub
parent eccdbc0e0c
commit f88cb14149

View File

@ -1,13 +0,0 @@
#! /bin/bash
port=$1
if [ -d venv ]; then
source venv/bin/activate
sanic server.server.app -H localhost -p $port
else
python3.10 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
sanic server.server.app -H 0.0.0.0 -p $port
fi