Merge pull request #4201 from aliencaocao/fix_nowebui_arg
Fix nowebui arg being ignored
This commit is contained in:
commit
91c7659dc2
11
launch.py
11
launch.py
|
@ -238,12 +238,15 @@ def tests(argv):
|
|||
proc.kill()
|
||||
|
||||
|
||||
def start_webui():
|
||||
print(f"Launching Web UI with arguments: {' '.join(sys.argv[1:])}")
|
||||
def start():
|
||||
print(f"Launching {'API server' if '--nowebui' in sys.argv else 'Web UI'} with arguments: {' '.join(sys.argv[1:])}")
|
||||
import webui
|
||||
webui.webui()
|
||||
if '--nowebui' in sys.argv:
|
||||
webui.api_only()
|
||||
else:
|
||||
webui.webui()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
prepare_enviroment()
|
||||
start_webui()
|
||||
start()
|
||||
|
|
Loading…
Reference in New Issue
Block a user