docs(context): recover portfolio context#13
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 8ec71f567d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| ```bash | ||
| # Start the FastAPI backend | ||
| uv run uvicorn app.main:app --reload |
There was a problem hiding this comment.
Point run commands at backend modules
The documented backend command references an app package, but this repo only defines the FastAPI app in backend/main.py and has no app package, so following this handoff fails immediately with ModuleNotFoundError instead of starting the service. The daemon command in the same block has the same app.* issue; the existing CLI is under backend.ingestion.ingest_daemon.
Useful? React with 👍 / 👎.
Summary
Verification