Skip to content

Spleap/MarketPulse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Market_Pulse Backend

本仓库当前提供两个相互独立的 FastAPI 后端服务骨架:

  • backend/llm_service: LLM 评估/网页信息总结(当前仅保留接口与空返回)
  • backend/market_service: K 线获取与机器学习预测(当前仅保留接口与空返回)

本地运行

分别进入目录安装依赖并启动:

cd backend/llm_service
python -m venv .venv
.venv\\Scripts\\activate
pip install -r requirements.txt
uvicorn app.main:app --host 0.0.0.0 --port 8001
cd backend/market_service
python -m venv .venv
.venv\\Scripts\\activate
pip install -r requirements.txt
uvicorn app.main:app --host 0.0.0.0 --port 8002

健康检查:

  • GET http://localhost:8001/health
  • GET http://localhost:8002/health

Docker Compose

docker compose up --build

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors