Create main.py
Browse files
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)
|