more removal of unnecessary environment variables

Former-commit-id: 425b9d616622467487339d5055b5d513c0fe7814
This commit is contained in:
cocktailpeanut 2024-05-09 01:32:00 -04:00
parent de509fa081
commit 58c5a5afaf

View File

@ -79,6 +79,4 @@ def run_web_ui() -> None:
def run_web_demo() -> None:
server_name = os.environ.get("GRADIO_SERVER_NAME", "0.0.0.0")
server_port = int(os.environ.get("GRADIO_SERVER_PORT", "7860"))
gradio_share = bool(int(os.environ.get("GRADIO_SHARE", "0")))
create_web_demo().queue().launch(share=gradio_share, server_name=server_name, server_port=server_port)
create_web_demo().queue().launch(server_name=server_name)