From f350f113a40a8c770f829d264198578ab1d364d9 Mon Sep 17 00:00:00 2001 From: srinadh777 <121044889+srinadhkesineni@users.noreply.github.com> Date: Mon, 12 May 2025 21:57:35 +0530 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b08fb0d..99e40c5 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,8 @@ The application will crawl the repository, analyze the codebase structure, gener To run this project in a Docker container: +Make sure before building the docker image you need to setup the google api key in utils/call_llm.py. + ### 1. Build the Docker image ```bash docker build -t pocketflow-app . @@ -150,5 +152,10 @@ docker build -t pocketflow-app . ### 2.Run the conatainer ```bash -docker run -it --rm pocketflow-app +docker run -it --rm -v :/app/output pocketflow-app --repo + +example: + +docker run -it --rm -v C:\Users\srinadh\PocketFlow-Tutorial-Codebase-Knowledge\output:/app/output pocketflow-app --repo https://github.com/srinadhkesineni/CI-CD.git + ```