From 81bd4dafa84893e20005325d6d74f239adc4b2ac Mon Sep 17 00:00:00 2001 From: Henry Li Date: Wed, 14 Jan 2026 07:14:00 +0800 Subject: [PATCH] chore: add .gitignore for Python project --- backend/.gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 backend/.gitignore diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..b4d02cc --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1,21 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info +.coverage +.coverage.* +agent_history.gif +static/browser_history/*.gif + +# Virtual environments +.venv +venv/ + +# User config file +config.yaml + +# Langgraph +.langgraph_api