修改后台管理端口为19001(符合端口规范)

This commit is contained in:
2026-04-08 11:52:28 +08:00
parent 1bcbc6a9b7
commit ac7a844cb8

View File

@@ -270,7 +270,7 @@ if __name__ == '__main__':
print("=" * 50)
print("文章撰写工作流系统 - 后台管理")
print("=" * 50)
print(f"访问地址: http://localhost:5001")
print(f"访问地址: http://localhost:19001")
print("=" * 50)
app.run(host='0.0.0.0', port=5001, debug=True)
app.run(host='0.0.0.0', port=19001, debug=True)