From b66211855524f5a1eb79de64ee2804bd369be164 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:18:05 -0800 Subject: [PATCH 01/18] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 34bfe6e..fcaec13 100644 --- a/app.py +++ b/app.py @@ -11,4 +11,4 @@ register_blueprints(app) if __name__ == "__main__": - app.run(debug=True) \ No newline at end of file + app.run(host="0.0.0.0") From d88fdbb5095544d595159a438408789150bb3259 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:18:26 -0800 Subject: [PATCH 02/18] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b5b62f0..89349ce 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ Sahayak is a revolutionary multilingual job portal specifically designed for blu ``` sahayak/ +|__ Dockerfile # Build docker image ├── app.py # Main Flask application ├── requirements.txt # Python dependencies ├── data/ From 2946ab543185661da2a66680e25d30bfd38e81b8 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Thu, 5 Feb 2026 06:19:25 +0600 Subject: [PATCH 03/18] Add files via upload --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f4270db --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.13-slim +WORKDIR /app +COPY ./sahayak-RAG-master ./sahayak-RAG-master +WORKDIR /app/sahayak-RAG-master +RUN pip install --no-cache-dir -r requirements.txt +CMD ["python","app.py"] \ No newline at end of file From 32ecfa7da5af7ba692a4a779566eac99d0a0279d Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:22:07 -0800 Subject: [PATCH 04/18] Update README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 89349ce..dfa6138 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,19 @@ python app.py 4. **Access the platform** Open your browser and navigate to `http://localhost:5000` + +## **Installation using Steps** +bash``` +docker build -t sahayak-rag:0.0.0 . +docker run -p5000:5000 sahayak-rag:0.0.0 +``` + + + + + + + ## 🎯 Core Functionality ### Intelligent Job Search From 90ad5b8489eb769465f36c440058410a8aa2cd8b Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:22:52 -0800 Subject: [PATCH 05/18] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dfa6138..ac707a9 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,8 @@ python app.py ## **Installation using Steps** -bash``` + +```bash docker build -t sahayak-rag:0.0.0 . docker run -p5000:5000 sahayak-rag:0.0.0 ``` From 7998daaf6155512e1c2ac301082c304724e41cda Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:30:28 -0800 Subject: [PATCH 06/18] Update README.md --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ac707a9..25932f6 100644 --- a/README.md +++ b/README.md @@ -109,11 +109,30 @@ python app.py ## **Installation using Steps** +1. **Clone the repository** + +```bash +git clone https://github.com/codeIntrovert/sahayak-RAG.git +cd sahayak-RAG +``` + +2. **Build docker image** ```bash docker build -t sahayak-rag:0.0.0 . -docker run -p5000:5000 sahayak-rag:0.0.0 ``` +3. **Run docker image** +```bash +docker run -p5000:5000 sahayak-rag:0.0.0 +``` +or +4. **Run docker image with persistent data folder** +```bash +docker run -v ./data:app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.0 +``` + +5. **Access the platform** + Open your browser and navigate to `http://localhost:5000` From 9046d117ffcbb4040f4853f45c3069c5aff2ec5e Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:30:56 -0800 Subject: [PATCH 07/18] Update Dockerfile --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f4270db..d93d8a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.13-slim WORKDIR /app -COPY ./sahayak-RAG-master ./sahayak-RAG-master -WORKDIR /app/sahayak-RAG-master +COPY ./sahayak-RAG ./sahayak-RAG +WORKDIR /app/sahayak-RAG RUN pip install --no-cache-dir -r requirements.txt -CMD ["python","app.py"] \ No newline at end of file + +CMD ["python","app.py"] From adfbc49c35a146a75ea96c50161850057e115ce2 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:34:53 -0800 Subject: [PATCH 08/18] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25932f6..22cfdce 100644 --- a/README.md +++ b/README.md @@ -118,17 +118,17 @@ cd sahayak-RAG 2. **Build docker image** ```bash -docker build -t sahayak-rag:0.0.0 . +docker build -t sahayak-rag:0.0.1 . ``` 3. **Run docker image** ```bash -docker run -p5000:5000 sahayak-rag:0.0.0 +docker run -p5000:5000 sahayak-rag:0.0.1 ``` or 4. **Run docker image with persistent data folder** ```bash -docker run -v ./data:app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.0 +docker run -v ./data:app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 ``` 5. **Access the platform** From 83f97f217bba47a90ccd3676572c9450f41524ea Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:35:42 -0800 Subject: [PATCH 09/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22cfdce..af38d2c 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ python app.py Open your browser and navigate to `http://localhost:5000` -## **Installation using Steps** +## **Installation steps using docker** 1. **Clone the repository** From 861157a394c7f89e7bc5f960634741c0bc4956a0 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:39:53 -0800 Subject: [PATCH 10/18] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d93d8a3..eb90619 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM python:3.13-slim WORKDIR /app -COPY ./sahayak-RAG ./sahayak-RAG +COPY . ./sahayak-RAG WORKDIR /app/sahayak-RAG RUN pip install --no-cache-dir -r requirements.txt CMD ["python","app.py"] + From 95fce20eff52386b6e7c069fc94c3cdd08274a03 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:48:10 -0800 Subject: [PATCH 11/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af38d2c..49ca3b6 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ python app.py 1. **Clone the repository** ```bash -git clone https://github.com/codeIntrovert/sahayak-RAG.git +git clone -b https://github.com/ramimK0bir/sahayak-RAG.git cd sahayak-RAG ``` From f7875d9cb97f666a2a7847b140a5838eda0e95f9 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 16:49:18 -0800 Subject: [PATCH 12/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49ca3b6..6a39192 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ python app.py 1. **Clone the repository** ```bash -git clone -b https://github.com/ramimK0bir/sahayak-RAG.git +git clone -b dockerize https://github.com/ramimK0bir/sahayak-RAG.git cd sahayak-RAG ``` From d8f38f7744bff448cd693ee4b8913779ac8c82c0 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 18:12:30 -0800 Subject: [PATCH 13/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a39192..44ecf98 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ docker run -p5000:5000 sahayak-rag:0.0.1 or 4. **Run docker image with persistent data folder** ```bash -docker run -v ./data:app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 +docker run -v $(pwd)/data:app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 ``` 5. **Access the platform** From a8c95e5b47a352c61cb8b017787b462b53918486 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 18:13:35 -0800 Subject: [PATCH 14/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44ecf98..c86731f 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ docker run -p5000:5000 sahayak-rag:0.0.1 or 4. **Run docker image with persistent data folder** ```bash -docker run -v $(pwd)/data:app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 +docker run -v $(pwd)/data:/app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 ``` 5. **Access the platform** From 51ae6f824eace37186e43f7b75c6763cd469a32e Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Wed, 4 Feb 2026 18:31:03 -0800 Subject: [PATCH 15/18] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c86731f..c977f99 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ docker run -v $(pwd)/data:/app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 ``` 5. **Access the platform** - Open your browser and navigate to `http://localhost:5000` + Open your browser and navigate to [localhost:5000](http://localhost:5000) From ff9336606c61ed3aa6e597c3ce21ee4e31c4f0d2 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Thu, 5 Feb 2026 06:32:27 -0800 Subject: [PATCH 16/18] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c977f99..291e29b 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,8 @@ sahayak/ 1. **Clone the repository** ```bash -git clone -cd sahayak +git clone https://github.com/codeIntrovert/sahayak-RAG.git +cd sahayak-RAG ``` 2. **Install dependencies** From 5012bb745344104532d25856ceef67f0def570c0 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Thu, 5 Feb 2026 10:49:33 -0800 Subject: [PATCH 17/18] Update README.md --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 291e29b..2a5647a 100644 --- a/README.md +++ b/README.md @@ -126,19 +126,17 @@ docker build -t sahayak-rag:0.0.1 . docker run -p5000:5000 sahayak-rag:0.0.1 ``` or -4. **Run docker image with persistent data folder** -```bash -docker run -v $(pwd)/data:/app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1 -``` - -5. **Access the platform** +4. **Access the platform** Open your browser and navigate to [localhost:5000](http://localhost:5000) - - - + ## 🎯 Core Functionality ### Intelligent Job Search From c7b6e729058dcb5c37a6427a7e1b98895be75912 Mon Sep 17 00:00:00 2001 From: ramimK0bir Date: Thu, 5 Feb 2026 10:53:54 -0800 Subject: [PATCH 18/18] Update README.md --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2a5647a..d1edb7b 100644 --- a/README.md +++ b/README.md @@ -126,17 +126,14 @@ docker build -t sahayak-rag:0.0.1 . docker run -p5000:5000 sahayak-rag:0.0.1 ``` or -4. **Access the platform** - Open your browser and navigate to [localhost:5000](http://localhost:5000) - - - - +5. **Access the platform** + Open your browser and navigate to [localhost:5000](http://localhost:5000) + + ## 🎯 Core Functionality ### Intelligent Job Search