Ensure Docker container always starts Web GUI (not CLI)
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user