Ensure Docker container always starts Web GUI (not CLI)
Mirror and run GitLab CI / build (push) Has been cancelled
Ruff / ruff (push) Has been cancelled

This commit is contained in:
admin
2026-06-14 05:11:38 +00:00
parent d854d498cd
commit 37d30e0ee2
4 changed files with 292 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
"""
Entrypoint for running ScrAIbe as a module:
python -m scraibe
Always launches the Web GUI (Gradio), never the CLI.
"""
from .webui import create_app
if __name__ == "__main__":
create_app()