112 lines
1.2 KiB
Plaintext
112 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Virtual environments
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
.gitmodules
|
|
|
|
# Documentation and configs not needed in image
|
|
*.md
|
|
!README.md
|
|
docs/
|
|
.pre-commit-config.yaml
|
|
.markdown_style.rb
|
|
.mdlrc
|
|
_config.yml
|
|
SCHEDULED_DOWNLOADS_PLAN.md
|
|
|
|
# Test files
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
conftest.py
|
|
|
|
# CI/CD
|
|
.github/
|
|
tox.ini
|
|
|
|
# Scripts and dev tools
|
|
scripts/
|
|
devscripts/
|
|
|
|
# Local data and logs (these should be mounted as volumes)
|
|
web_interface/data/*.db
|
|
web_interface/data/*.db-*
|
|
*.log
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Environment files (use docker-compose env instead)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Docker files (don't need docker in docker)
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# OS specific
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.backup |