b1484641d9
updated TV .nfo handling
78 lines
850 B
Plaintext
78 lines
850 B
Plaintext
# Environment files with sensitive data
|
|
.env
|
|
.env.secrets
|
|
.env.local
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Local development files (not for public repo)
|
|
*.local
|
|
CODE_STRUCTURE.local
|
|
sync-to-github.sh
|
|
|
|
# Ignore GitHub workflows when pushing to Gitea
|
|
.github/
|
|
|
|
# Ignore Gitea workflows when pushing to GitHub
|
|
.gitea/
|
|
|
|
# Temporary troubleshooting files - to be removed
|
|
Dockerfile.optimized
|
|
fix-gitea-packages.md
|
|
configure-docker-insecure.md
|
|
CLEANUP.md
|
|
README-OPTIMIZED.md |