- Move agent code from backend/src/agent/ to agent/src/ss_tools/agent/ - Extract shared stdlib-only utilities to shared/src/ss_tools/shared/ - Add #region/#endregion contracts to all ~140 functions (INV_1 compliance) - Update docker files, entrypoint, build scripts for new package layout - Backend now imports ss_tools.shared._llm_health (no gradio/langchain deps) - Add specs for 036-039 feature plans
13 lines
426 B
Plaintext
Executable File
13 lines
426 B
Plaintext
Executable File
# Full development requirements — backend only.
|
|
# For production Docker images, use:
|
|
# - requirements-backend.txt (FastAPI backend)
|
|
# For development, also install:
|
|
# - agent/requirements.txt (Gradio agent, separate project)
|
|
# - shared/ (pip install -e shared/) (shared utilities)
|
|
|
|
-r requirements-backend.txt
|
|
|
|
# Dev/test only — NOT included in any production image
|
|
ruff>=0.11.0
|
|
testcontainers[postgres]>=4.0
|