mirror of
https://github.com/Dodelidoo-Labs/sonobarr.git
synced 2026-04-26 09:06:58 -04:00
44 lines
478 B
Plaintext
44 lines
478 B
Plaintext
# Version control
|
|
.git
|
|
.github
|
|
.gitignore
|
|
|
|
# OS / editor files
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Python caches
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.pytest_cache/
|
|
|
|
# Virtual environments / env files
|
|
venv/
|
|
env/
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
tmp/
|
|
|
|
# Tests and documentation
|
|
tests/
|
|
doc/
|
|
|
|
# Local config not baked into image
|
|
config/
|
|
|
|
# Project metadata / CI-only files
|
|
CHANGELOG.md
|
|
CONTRIBUTING.md
|
|
README.md
|
|
LICENSE
|
|
docker-compose.yml
|
|
pytest.ini
|
|
sonar-project.properties
|