diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..1c020ed2630d2e6ffd7ca75e18c3a42b8399b64c --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +### Setup Steps + +create virtual environment python +`python3 -m venv env` + +activate virtual envirment +`source env/bin/activate` + +install requirements +`pip3 install -r requirements.txt` + +run server +`gunicorn -b 0.0.0.0:5000 --workers 1 --threads 100 server:app` + +go to the following URL in your broswer + +`http://127.0.0.0:5000/`