Conversation
…onoun detection; add tests
…; clarify Codex workflow
…ate STATUS & Design Intent
…lper in docs README
There was a problem hiding this comment.
Codex Review: Here are some suggestions.
Reply with @codex fix comments to fix any unresolved comments.
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, or 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 fix this CI failure" or "@codex address that feedback".
| WorkingDirectory=%h/soulfield/backend | ||
| # Ensure node is available for the user session | ||
| Environment=PATH=%h/bin:/usr/local/bin:/usr/bin:/snap/bin | ||
| Environment=NODE_ENV=production | ||
| ExecStart=/usr/bin/env node index.cjs |
There was a problem hiding this comment.
[P1] Fix systemd working directory casing
Both user services set WorkingDirectory=%h/soulfield/backend. The repository is named Soulfield (capital S) in this tree, so a standard clone into ~/Soulfield will leave the configured working directory non‑existent and the units will fail to start with No such file or directory. Consider using the correct case or a configurable path.
Useful? React with 👍 / 👎.
| """ | ||
| requests.api | ||
| ~~~~~~~~~~~~ | ||
|
|
||
| This module implements the Requests API. | ||
|
|
||
| :copyright: (c) 2012 by Kenneth Reitz. | ||
| :license: Apache2, see LICENSE for more details. | ||
| """ | ||
|
|
||
| from . import sessions | ||
|
|
||
|
|
||
| def request(method, url, **kwargs): | ||
| """Constructs and sends a :class:`Request <Request>`. | ||
|
|
||
| :param method: method for the new :class:`Request` object: ``GET``, ``OPTIONS``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, or ``DELETE``. | ||
| :param url: URL for the new :class:`Request` object. | ||
| :param params: (optional) Dictionary, list of tuples or bytes to send | ||
| in the query string for the :class:`Request`. |
There was a problem hiding this comment.
[P1] Remove committed virtualenv artifacts
This commit introduces an entire Python virtual environment under .venv/ (e.g. vendored requests and hundreds of compiled bytecode files). These environment artifacts add thousands of files and over 300k lines to the repo, dramatically inflating checkout size and making diffs noisy. They should be ignored via .gitignore rather than committed.
Useful? React with 👍 / 👎.
Title:
Summary
Checklist
Validation
1.
2.
Links