From fd1a045488f5a9e74cbf14e2ce07499c1e5d2525 Mon Sep 17 00:00:00 2001 From: mirivlad Date: Sun, 10 May 2026 23:36:12 +0800 Subject: [PATCH] Add repository ignore rules --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e91fed --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ + +# Virtual environments +.venv/ +venv/ +env/ + +# Local environment and secrets +.env +.env.* +!.env.example +config/.env +config/.env.* +*.pem +*.key + +# Local models and embeddings +/models/ +*.gguf +*.safetensors +*.bin + +# Runtime state +data/**/*.sqlite3 +data/**/*.sqlite3-* +data/runtime/*.pid +data/runtime/*.log +logs/ +*.log + +# OS/editor +.DS_Store +.idea/ +.vscode/