Add repository ignore rules

This commit is contained in:
mirivlad 2026-05-10 23:36:12 +08:00
commit fd1a045488
1 changed files with 40 additions and 0 deletions

40
.gitignore vendored Normal file
View File

@ -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/