mirror of
https://github.com/rangermix/TwitchDropsMiner.git
synced 2026-05-26 07:08:04 +00:00
Replace the legacy desktop/Tkinter client and packaging artifacts with a Docker-first, web-hosted approach. - Add Docker quickstart and run-from-source instructions to the README to simplify deployment. - Simplify launcher to invoke the new web backend module instead of the old desktop entrypoint. - Update dependencies for a web UI stack (FastAPI, Uvicorn, python-socketio, Jinja2, etc.) and remove desktop/tray-specific packages. - Remove legacy GUI, packaging and platform-specific helper code, along with obsolete build/pack scripts and AppImage assets to declutter the repo. - Tidy project ignore rules to add runtime logs and editor metadata. Rationale: streamline deployment, favor a browser-accessible interface, and reduce maintenance overhead from multiple platform-specific GUI/packaging implementations.
63 lines
509 B
Plaintext
63 lines
509 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
env/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# GitHub
|
|
.github/
|
|
|
|
# CI/CD
|
|
.gitlab-ci.yml
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Application data (will be mounted as volumes)
|
|
data/
|
|
cache/
|
|
cookies.jar
|
|
settings.json
|
|
log.txt
|
|
dump.dat
|
|
lock.file
|
|
logs/
|
|
.claude/
|
|
|
|
# Build artifacts
|
|
*.exe
|
|
*.AppImage
|
|
*.deb
|
|
*.rpm
|
|
|
|
# Other
|
|
.env
|
|
.env.local
|