110 lines
1.6 KiB
Plaintext
110 lines
1.6 KiB
Plaintext
# ============================================================
|
|
# Hockey control panel — files that must stay local/generated
|
|
# ============================================================
|
|
|
|
# Python bytecode / caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.pyright/
|
|
.ruff_cache/
|
|
.hypothesis/
|
|
.cache/
|
|
|
|
# Coverage / test reports
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
junit*.xml
|
|
test-results/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python packaging / build output
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
|
|
# Local secrets and environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.sample
|
|
|
|
# Runtime settings, credentials, UI layouts and backups.
|
|
# These are machine/account specific and are created automatically.
|
|
settings/
|
|
|
|
# Stat2TV / API diagnostic snapshots
|
|
hockey_data/snapshots/
|
|
|
|
# Logs and runtime temporary files
|
|
logs/
|
|
*.log
|
|
*.pid
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.old
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Local exports / downloaded archives
|
|
exports/
|
|
downloads/
|
|
*.zip
|
|
*.rar
|
|
*.7z
|
|
*.tar
|
|
*.tar.gz
|
|
|
|
# Local database / database backup artifacts
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.dump
|
|
*.backup
|
|
|
|
# Node/front-end dependency caches (if tooling is added later)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# IDE / editor files
|
|
.vscode/
|
|
.idea/
|
|
*.code-workspace
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Thumbs.db
|
|
Thumbs.db:encryptable
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
$RECYCLE.BIN/
|
|
|
|
# Generated release notes from iterative update builds.
|
|
# Keep README.md and the permanent project documentation tracked.
|
|
BUILD[0-9]*.md
|
|
UPDATE_NO_USER_CONFIG.txt
|