From c2458c99cc9043ec80cadb83e255b3c1d4e2950e Mon Sep 17 00:00:00 2001
From: Adeel Ahmad <adeah090@student.liu.se>
Date: Fri, 10 Mar 2023 13:08:04 +0000
Subject: [PATCH] Add README.md

---
 README.md | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1c020ed
--- /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/`
-- 
GitLab