Skip to content

Commit e43214d

Browse files
committed
feat:新增waitress启动前端
1 parent fad482b commit e43214d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dash-fastapi-frontend/wsgi.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from waitress import serve
2+
from app import app
3+
4+
serve(
5+
app.server,
6+
host='0.0.0.0',
7+
port=8088
8+
)

0 commit comments

Comments
 (0)