Fix --nowebui argument being ineffective
This commit is contained in:
parent
1a4ff2de6a
commit
fb1374791b
1 changed files with 7 additions and 4 deletions
11
launch.py
11
launch.py
|
@ -217,12 +217,15 @@ def tests(argv):
|
||||||
proc.kill()
|
proc.kill()
|
||||||
|
|
||||||
|
|
||||||
def start_webui():
|
def start():
|
||||||
print(f"Launching Web UI with arguments: {' '.join(sys.argv[1:])}")
|
print(f"Launching {'API server' if '--nowebui' in sys.argv else 'Web UI'} with arguments: {' '.join(sys.argv[1:])}")
|
||||||
import webui
|
import webui
|
||||||
webui.webui()
|
if '--nowebui' in sys.argv:
|
||||||
|
webui.api_only()
|
||||||
|
else:
|
||||||
|
webui.webui()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
prepare_enviroment()
|
prepare_enviroment()
|
||||||
start_webui()
|
start()
|
||||||
|
|
Loading…
Reference in a new issue