From 19bf769e4e3e8f106223c928ff606f362dae2ce3 Mon Sep 17 00:00:00 2001 From: VinodHatti_ Date: Wed, 15 Oct 2025 00:07:40 +0530 Subject: [PATCH] Update .gitignore: Add logs/, deepcode_lab/papers/, and mcp_agent.secrets.yaml This PR addresses issue #43 by adding the following entries to .gitignore: - logs/ directory for log files - deepcode_lab/papers/ directory for paper storage - mcp_agent.secrets.yaml for sensitive configuration These additions help keep the repository clean and prevent accidentally committing sensitive data or generated files. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0f34269d..e74582c2 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ venv/ *.env* .env_example - # Build / Distribution dist/ build/ @@ -26,6 +25,7 @@ site/ *.logfire *.coverage/ log/ +logs/ # Caches .cache/ @@ -51,6 +51,10 @@ rag_storage/ examples/input/ examples/output/ deepcode-mcp/agent_folders +deepcode_lab/papers/ + +# Secrets & Config +mcp_agent.secrets.yaml # Miscellaneous .DS_Store