jeronimo9 commited on
Commit
6ecaf4f
·
verified ·
1 Parent(s): 92eccb4

Create main.py

Browse files
Files changed (1) hide show
  1. main.py +7 -0
main.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from app import create_app
3
+
4
+ app = create_app()
5
+
6
+ if __name__ == "__main__":
7
+ app.launch(server_name="0.0.0.0")