Add PersonalizeU scaffolding for backend and frontend flows - #1
Add PersonalizeU scaffolding for backend and frontend flows#1JeremyBrown34 wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ 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".
| 3. Start the API server from the repository root: | ||
| ```bash | ||
| uvicorn personalizeu.backend.app:app --reload |
There was a problem hiding this comment.
README start command cannot import package
The documented run command uvicorn personalizeu.backend.app:app --reload fails when executed from the repo root after only installing requirements.txt, because personalizeu lives under src/ and the repository has no pyproject.toml/setup.cfg to put src on sys.path. With the default working directory, Python cannot resolve the package and uvicorn aborts with ModuleNotFoundError: No module named 'personalizeu'. The run instructions need to add PYTHONPATH=src (or install the package) so the server can start.
Useful? React with 👍 / 👎.
Summary
Testing
Codex Task