修改部署端口为 16025

- Flask 服务端口: 16025
- Docker 端口映射: 16025:16025
- systemd 服务配置更新
- 测试脚本端口更新
- 文档示例更新
This commit is contained in:
2026-07-04 23:21:52 +08:00
parent ed42f65c56
commit 8f9bdff00c
9 changed files with 24 additions and 24 deletions

4
app.py
View File

@@ -397,5 +397,5 @@ if __name__ == '__main__':
print(" agent-browser: npm install -g agent-browser && agent-browser install")
print(" playwright: pip install playwright && playwright install chromium")
print("\n🚀 Server running on http://0.0.0.0:5000")
app.run(host='0.0.0.0', port=5000, debug=True)
print("\n🚀 Server running on http://0.0.0.0:16025")
app.run(host='0.0.0.0', port=16025, debug=True)