ryparmar commited on
Commit
ea041b2
·
1 Parent(s): 301e7ac

turn off sharing

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def main(args):
37
  frontend.launch(
38
  server_name="0.0.0.0", # make server accessible, binding all interfaces # noqa: S104
39
  server_port=args.port, # set a port to bind to, failing if unavailable
40
- share=True, # should we create a (temporary) public link on https://gradio.app?
41
  favicon_path=FAVICON, # what icon should we display in the address bar?
42
  )
43
 
 
37
  frontend.launch(
38
  server_name="0.0.0.0", # make server accessible, binding all interfaces # noqa: S104
39
  server_port=args.port, # set a port to bind to, failing if unavailable
40
+ share=False, # should we create a (temporary) public link on https://gradio.app?
41
  favicon_path=FAVICON, # what icon should we display in the address bar?
42
  )
43