-
Notifications
You must be signed in to change notification settings - Fork 784
Add Docker support for local development #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
srinadhkesineni
commented
May 11, 2025
- Added Dockerfile for containerized setup
- Included .dockerignore
- Updated documentation with Docker usage instructions
docker documentation added
This PR adds basic Docker support so users can run the project in an isolated environment. |
Thank you! But could you remove the GEMINI_API_KEY? |
Thanks for pointing that out! I checked, but I couldn't find any GEMINI_API_KEY in the code. let me know where exactly it's located so I can remove it? |
utils/call_llm.py
Outdated
@@ -56,7 +56,7 @@ def call_llm(prompt: str, use_cache: bool = True) -> str: | |||
|
|||
# You can comment the previous line and use the AI Studio key instead: | |||
client = genai.Client( | |||
api_key=os.getenv("GEMINI_API_KEY", ""), | |||
api_key=os.getenv("GEMINI_API_KEY", "AIzaSyDzXuRp0hP6wAWUFTGRrUPDiKWffUm7vGk"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated the code. could you check that once
Any information on how to build and run the docker container in the README with the command that the I would expect to see something like: docker run --rm -it \
-v $(pwd)/output:/output tutorial-codebase-knowledge \
--repo <github_repo> \
--token <github_token> BTW: there is another PR for something similar: https://github.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge/pull/54/files |