添加注册登录功能
This commit is contained in:
14
run_dev_fixed.py
Normal file
14
run_dev_fixed.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
修复版本的开发服务器启动脚本
|
||||
"""
|
||||
from src.flask_prompt_master import create_app
|
||||
|
||||
if __name__ == '__main__':
|
||||
app = create_app()
|
||||
app.run(
|
||||
host='0.0.0.0', # 绑定到所有地址
|
||||
port=5000,
|
||||
debug=True,
|
||||
use_reloader=False # 禁用自动重载,避免连接问题
|
||||
)
|
||||
Reference in New Issue
Block a user