122 lines
1.4 KiB
Plaintext
122 lines
1.4 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.python-version
|
|
|
|
# UV specific
|
|
.uv/
|
|
uv.lock
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pytype/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Certificates - DO NOT COMMIT PRIVATE KEYS
|
|
certs/*.key
|
|
certs/*.crt
|
|
certs/*.pem
|
|
certs/*.csr
|
|
certs/ca.key
|
|
certs/ca.crt
|
|
certs/server.key
|
|
certs/server.crt
|
|
# Keep the README
|
|
!certs/README.md
|
|
|
|
# Docker volumes and data
|
|
docker-compose.override.yml
|
|
.docker/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.tmp
|
|
|
|
# Environment files
|
|
# Note: .env is tracked and contains non-secret configuration (ports, etc.)
|
|
# Add secrets only to .env.local which is ignored
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
.env.development
|
|
|
|
# MacOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
|
|
# Thumbnails
|
|
.Thumbs.db
|
|
|
|
# Files that might appear in the root of a volume
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
|
|
# Directories potentially created on remote AFP share
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|