.gitignore (307 B )
1 # Python virtual environment 2 venv/ 3 __pycache__/ 4 *.pyc 5 *.pyo 6 *.pyd 7 8 # Mix folder (audio files, album art, custom CSS/JS) 9 mix/* 10 !mix/readme.md 11 12 # macOS 13 .DS_Store 14 15 # IDE 16 .vscode/ 17 .idea/ 18 *.swp 19 *.swo 20 *~ 21 22 # auto-generated PWA files 23 manifest.json 24 service-worker.js 25 26 # Personal deployment scripts 27 push.py 28 cleanup.py