Update app.py
Browse files
app.py
CHANGED
@@ -7,4 +7,4 @@ def greet(name):
|
|
7 |
|
8 |
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
|
9 |
|
10 |
-
demo.launch(ssr_mode=False)
|
|
|
7 |
|
8 |
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
|
9 |
|
10 |
+
demo.launch(share=True, auth=("username", "password"), ssr_mode=False)
|