mateuseap commited on
Commit
45e649f
1 Parent(s): 4cbf729

feat(app.py): running app locally and in a public url

Browse files
Files changed (1) hide show
  1. app.py +1 -9
app.py CHANGED
@@ -2089,13 +2089,5 @@ with gr.Blocks(theme=gr.themes.Base(), title='Mangio-RVC-Web 💻') as app:
2089
  "-------------------------------\n"
2090
  )
2091
 
2092
- if config.iscolab or config.paperspace: # Share gradio link for colab and paperspace (FORK FEATURE)
2093
- app.queue(concurrency_count=511, max_size=1022).launch(share=True, quiet=True)
2094
- else:
2095
- app.queue(concurrency_count=511, max_size=1022).launch(
2096
- server_name="0.0.0.0",
2097
- inbrowser=not config.noautoopen,
2098
- server_port=config.listen_port,
2099
- quiet=True,
2100
- )
2101
  #endregion
 
2089
  "-------------------------------\n"
2090
  )
2091
 
2092
+ app.queue(concurrency_count=511, max_size=1022).launch(share=True, quiet=True)
 
 
 
 
 
 
 
 
2093
  #endregion