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.
14 lines
313 B
Python
14 lines
313 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
TwitchDropsMiner - Main entry point
|
|
|
|
This is a simple launcher that runs the src package as a module.
|
|
All application code is in the src/ directory.
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
import runpy
|
|
|
|
# Run the src package as a module
|
|
runpy.run_module("src", run_name="__main__")
|