# 项目位置与启动说明 ## 项目位置 当前项目已经移动到: ```text D:\Python\AI\company-ai-platform ``` 原来的临时输出目录已经不再使用: ```text C:\Users\20143\Documents\Codex\2026-06-21\new-chat\outputs\company-ai-platform ``` ## Conda 环境 Conda 环境名: ```text company-ai-platform ``` ## 启动命令 在 PowerShell 中执行: ```powershell cd D:\Python\AI\company-ai-platform conda activate company-ai-platform uvicorn app.main:app --reload --host 0.0.0.0 --port 8010 ``` 启动后访问接口文档: ```text http://127.0.0.1:8010/docs ``` ## 常用验证命令 ```powershell conda run -n company-ai-platform python -m compileall app tests scripts conda run -n company-ai-platform python scripts\verify_smoke.py conda run -n company-ai-platform pytest -q ```