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 + ```