docs: fix outdated port and startup command in QUICK_START.md, remove duplicate pipe in README#733
Open
sherrycs5210 wants to merge 1 commit into
Open
Conversation
- README.md: remove duplicate `|` in feature list (typo) - QUICK_START.md: update localhost:8501 (Streamlit) → localhost:3000 (Vue frontend) - QUICK_START.md: replace deprecated `streamlit run` command with current startup scripts (start_backend.py + start_web.py) - QUICK_START.md: update FAQ port from 8501 to 3000/8000 The project migrated from Streamlit to FastAPI + Vue 3 in v1.0.0, but QUICK_START.md still referenced the old Streamlit defaults. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
echopoison0712
pushed a commit
to echopoison0712/TradingAgents-CN
that referenced
this pull request
Jun 8, 2026
* docs: add Trendshift badge to localized readmes * docs: add HelloGitHub badge beside Trendshift * docs: switch HelloGitHub badge to neutral theme * docs: move community badges below status badges
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题描述
文档中存在两处因技术栈迁移遗留的错误,可能导致新用户安装失败。
修改内容
README.md
| |空元素(排版 typo)docs/QUICK_START.md
localhost:8501(Streamlit 旧端口)更新为localhost:3000(Vue 前端实际端口)python -m streamlit run web/app.py替换为当前正确的启动脚本:python scripts/startup/start_backend.py(后端)python scripts/startup/start_web.py(前端)8501更新为3000/8000原因
项目在 v1.0.0 已从 Streamlit 迁移至 FastAPI + Vue 3,但
QUICK_START.md仍保留旧的 Streamlit 默认配置,会使新用户按文档操作后无法访问应用。测试
改动均为文档修正,无需代码测试。端口信息已对照
docker-compose.yml(前端 3000、后端 8000)及scripts/startup/目录核实。