添加注册登录功能

This commit is contained in:
2025-08-29 00:34:40 +08:00
parent 09065f2ce7
commit 2fe3474d9e
3060 changed files with 29217 additions and 87137 deletions

14
run_dev_fixed.py Normal file
View 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 # 禁用自动重载,避免连接问题
)