From 86bb0a4c329d710d46e4263716979e1df6accf88 Mon Sep 17 00:00:00 2001 From: Tanishq Dubey Date: Sat, 25 May 2024 20:38:55 -0400 Subject: [PATCH] Readme --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b4d378c --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# DWSFi + +Simulation of a treasury purchasing application + +## Why DWS? + +DWS - Dubey Web Services + +## How to run? + +``` +pip3 install -r requirements.txt +python3 main.py +``` + +Access at `localhost:8008` + +## Docker build + +``` +docker build -t MY_TAG . +``` + +## Docker run + +``` +docker run -it -p 8008:8008 MY_TAG +```