mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-12-23 23:59:04 -05:00
57 lines
564 B
Plaintext
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
|