Files
scribe/scraibe/__main__.py
T
admin 37d30e0ee2
Mirror and run GitLab CI / build (push) Has been cancelled
Ruff / ruff (push) Has been cancelled
Ensure Docker container always starts Web GUI (not CLI)
2026-06-14 05:11:38 +00:00

13 lines
205 B
Python

"""
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()