mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
cbf646e25b
## Major Changes - Fixed all TypeScript errors in web client for successful compilation - Resolved 82+ Python lint errors across backend services - Updated Flutter SDK compatibility for mobile app - Fixed security workflow configuration ## Web Client Fixes - Fixed import path in DragonflyDashboard.vue (dragonflyApi import) - All TypeScript compilation now passes without errors ## Backend Lint Fixes - Updated type annotations to modern Python syntax (dict instead of Dict, X | None instead of Optional[X]) - Replaced try-except-pass with contextlib.suppress(Exception) - Removed unused imports (Dict, Optional, Any, Iterator, etc.) - Fixed bare except clauses to use Exception - Sorted and formatted imports with ruff - Applied ruff format to 27 files ## Workflow Fixes - Updated Flutter SDK constraint from ^3.10.4 to ^3.5.0 (compatible with Flutter 3.24.0) - Changed pip-audit format from github to json in security.yml - Added comprehensive CI workflows (readiness-gate.yml, security.yml) ## Infrastructure - Added DragonflyDB caching system integration - Enhanced Docker configuration with multi-stage builds - Added pytest configuration and test infrastructure - Improved production readiness with proper error handling ## Verification - backend-lint job: ✅ Succeeded - web job: ✅ Succeeded - Ready for GitHub deployment All CI/CD issues resolved. Codebase now passes all quality checks.
162 lines
1.8 KiB
Plaintext
162 lines
1.8 KiB
Plaintext
# Local environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
venv
|
|
.venv
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# 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
|
|
.hypothesis
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Logs
|
|
*.log
|
|
logs.txt
|
|
nohup.out
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*~
|
|
|
|
# Build artifacts (should be in CI/CD only)
|
|
*.whl
|
|
*.tar.gz
|
|
*.zip
|
|
*.apk
|
|
*.exe
|
|
*.dmg
|
|
*.AppImage
|
|
*.deb
|
|
*.rpm
|
|
*.msi
|
|
*.pkg
|
|
|
|
# Submodule build artifacts
|
|
swingmusic-desktop/target/
|
|
swingmusic-desktop/node_modules/
|
|
swingmusic-desktop/dist/
|
|
swingmusic-desktop/src-tauri/target/
|
|
|
|
swingmusic-webclient/node_modules/
|
|
swingmusic-webclient/dist/
|
|
swingmusic-webclient/.nuxt/
|
|
swingmusic-webclient/.output/
|
|
swingmusic-webclient/.cache/
|
|
|
|
swingmusic-android/app/build/
|
|
swingmusic-android/.gradle/
|
|
swingmusic-android/build/
|
|
swingmusic-android/local.properties
|
|
swingmusic-android/*.apk
|
|
swingmusic-android/*.aab
|
|
|
|
# Backend specific
|
|
src/swingmusic/__pycache__/
|
|
src/swingmusic/static/
|
|
src/swingmusic/media/
|
|
src/swingmusic/dist/
|
|
src/swingmusic/build/
|
|
src/swingmusic/*.egg-info/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Configuration with secrets
|
|
config.py
|
|
settings_local.py
|
|
.secrets
|
|
.pypirc
|
|
|
|
# Test files
|
|
test.py
|
|
testdata.py
|
|
encoderx.py
|
|
sqllib.py
|
|
|
|
# Documentation build
|
|
docs/_build/
|
|
site/
|
|
|
|
# Coverage reports
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# PEP 582
|
|
__pypackages__/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Spyder
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope
|
|
.ropeproject
|
|
|
|
# mkdocs
|
|
/site
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json |