sql-db-engineer-agent / .gitignore
junaid0600's picture
Fix gitignore - exclude pycache
a28e8c9
Raw
History Blame Contribute Delete
357 Bytes
# Environment variables — NEVER commit real keys
.env
# Python cache
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
# Virtual environments
venv/
ENV/
.venv/
# Pytest cache
.pytest_cache/
*.pytest_cache
# VS Code
.vscode/
# Docker
*.tar
# OS files
.DS_Store
Thumbs.db
# Test files we don't need in prod
test_*.py
# Distribution
dist/
build/
*.egg-info/