diff --git a/client.py b/client/client.py similarity index 100% rename from client.py rename to client/client.py diff --git a/reqs.txt b/requirements.txt similarity index 100% rename from reqs.txt rename to requirements.txt diff --git a/run_client.sh b/run_client.sh index edbfbf8..a368498 100755 --- a/run_client.sh +++ b/run_client.sh @@ -2,11 +2,11 @@ if [ -d venv ]; then source venv/bin/activate; - python client.py + python client/client.py else: python3.10 -m venv venv source venv/bin/activate - pip install -r reqs.txt + pip install -r requirements.txt python client.py fi diff --git a/run_server.sh b/run_server.sh index 17906a1..692f63e 100644 --- a/run_server.sh +++ b/run_server.sh @@ -8,6 +8,6 @@ if [ -d venv ]; then else python3.10 -m venv venv source venv/bin/activate - pip install -r reqs.txt + pip install -r requirements.txt sanic server.app -H 0.0.0.0 -p $port fi