From 3f1812d320de91272457e90077b7225a49ccc1f2 Mon Sep 17 00:00:00 2001 From: tianyufan Date: Thu, 30 Oct 2025 11:27:10 +0800 Subject: [PATCH] update .gitignore --- .gitignore | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ee6b73a --- /dev/null +++ b/.gitignore @@ -0,0 +1,82 @@ +# Environment variables +.env +.env.local +.env.*.local + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +venv/ +ENV/ +env/ +.venv + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# macOS +.DS_Store +.AppleDouble +.LSOverride + +# Logs +logs/ +*.log + +# Runtime files +.runtime_env.json + +# Test and temporary files +test.py +delete.py +refresh_data.sh + +# Config files (optional - uncomment if needed) +configs/day_config.json +configs/hour_config.json +configs/test_config.json + +# Data directories (optional - uncomment if needed) +data/agent_data/test*/ +data/agent_data/*test*/ +data/merged_daily.jsonl +data/merged_hour.jsonl + +# Jupyter Notebook +.ipynb_checkpoints + +# pytest +.pytest_cache/ +.coverage +htmlcov/ + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json +