API/DB: add Event.muted with full CRUD wiring (Alembic migration), persist/return with autoplay/loop/volume
Dashboard: per‑event video options (autoplay/loop/volume/muted) with system defaults; Settings → Events → Videos defaults
Settings UX: nested tabs with controlled selection; Academic Calendar: merge “Schulferien Import”+“Liste” into “📥 Import & Liste”
Docs: update README and copilot-instructions (video payload, streaming 206, defaults keys); update program-info.json changelog; bump version to 2025.1.0‑alpha.11
102 lines
1.1 KiB
Plaintext
102 lines
1.1 KiB
Plaintext
# OS/Editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
|
|
# Node
|
|
node_modules/
|
|
dashboard/node_modules/
|
|
dashboard/.vite/
|
|
|
|
# Env files (never commit secrets)
|
|
.env
|
|
.env.local
|
|
|
|
# Docker
|
|
*.log
|
|
# Python-related
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.pdb
|
|
*.egg-info/
|
|
*.eggs/
|
|
*.env
|
|
.env
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
.venv/
|
|
.env/
|
|
|
|
# Logs and databases
|
|
*.log
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Docker-related
|
|
*.pid
|
|
*.tar
|
|
docker-compose.override.yml
|
|
docker-compose.override.*.yml
|
|
docker-compose.override.*.yaml
|
|
|
|
# Node.js-related
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Dash and Flask cache
|
|
*.cache
|
|
*.pytest_cache/
|
|
instance/
|
|
*.mypy_cache/
|
|
*.hypothesis/
|
|
*.coverage
|
|
.coverage.*
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.bak
|
|
*.tmp
|
|
|
|
# OS-generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Devcontainer-related
|
|
.devcontainer/
|
|
|
|
received_screenshots/
|
|
mosquitto/
|
|
alte/
|
|
screenshots/
|
|
media/
|
|
dashboard/manitine_test.py
|
|
dashboard/pages/test.py
|
|
.gitignore
|
|
dashboard/sidebar_test.py
|
|
dashboard/assets/responsive-sidebar.css
|
|
certs/
|
|
sync.ffs_db
|
|
.pnpm-store/
|
|
dashboard/src/nested_tabs.js
|