jbilcke-hf HF staff commited on
Commit
68006fa
·
1 Parent(s): 0328e32
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -68,7 +68,11 @@ def main():
68
  app.queue(default_concurrency_limit=2).launch(
69
  server_name="0.0.0.0",
70
  allowed_paths=allowed_paths,
71
- auth=("admin", VMS_ADMIN_PASSWORD) if VMS_ADMIN_PASSWORD else None
 
 
 
 
72
  )
73
 
74
  if __name__ == "__main__":
 
68
  app.queue(default_concurrency_limit=2).launch(
69
  server_name="0.0.0.0",
70
  allowed_paths=allowed_paths,
71
+
72
+ # for some reason this crashes Gradio
73
+ # I was expecting to see a login modal or something
74
+ # but instead this creates an infinite loop
75
+ #auth=("admin", VMS_ADMIN_PASSWORD) if VMS_ADMIN_PASSWORD else None
76
  )
77
 
78
  if __name__ == "__main__":