lqfjun commited on
Commit
71b28f3
1 Parent(s): f14db4f

Create main.py

Browse files
Files changed (1) hide show
  1. main.py +9 -0
main.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import dash
2
+ from dash import html
3
+ app = dash.Dash(__name__)
4
+ server = app.server
5
+
6
+ app.layout = html.H1("Test")
7
+
8
+ if __name__ == "__main__":
9
+ app.run(debug=False,host="0.0.0.0",port=8814, threaded=True)