62 lines
681 B
Plaintext
62 lines
681 B
Plaintext
# Python specific ignores
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
*.pyd
|
|
*.whl
|
|
*.log
|
|
*.pot
|
|
*.mo
|
|
*.pyo
|
|
|
|
# Virtual environment directories
|
|
env/
|
|
venv/
|
|
.venv/
|
|
|
|
# Python packaging
|
|
*.manifest
|
|
*.spec
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Cache files
|
|
*.log
|
|
*.sqlite3
|
|
*.db
|
|
.DS_Store
|
|
*.bak
|
|
*.swp
|
|
|
|
# Test output
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
coverage.*
|
|
*.cover
|
|
*.py,cover
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.pid
|
|
|
|
# FastAPI specific
|
|
*.env
|
|
alembic/versions/* # Ignore migration files if autogenerated
|
|
instance/
|
|
|
|
# VS Code settings (specific to SSH)
|
|
.vscode/
|
|
.vscode-server/
|
|
|
|
# Ignore SSH settings files
|
|
.ssh/
|
|
*.pem
|
|
*.key
|
|
|
|
# pyright cache (VSCode Python language server)
|
|
.pyright/
|