Files
bazarr/dev-setup/.dockerignore
2025-08-09 09:00:19 -04:00

57 lines
564 B
Plaintext

# Git files
.git
.gitignore
.github
# Development data
data/
# Documentation
*.md
docs/
screenshot/
# Test files
tests/
*_test.py
*.test.js
# Cache and temporary files
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
.cache/
.pytest_cache/
.coverage
htmlcov/
# Node modules (for frontend, will be installed in container)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Build artifacts
dist/
build/
*.egg-info/
# Docker files
Dockerfile*
docker-compose*.yml
.dockerignore