cube-studio/myapp/run.py
2021-08-17 17:00:34 +08:00

12 lines
173 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from myapp import app
# 如果使用 flask run 命令启动,将忽视 这里配置8080而采用默认的5000端口
app.run(host="0.0.0.0", port=80, debug=True)