- Drop ipykernel from the root virtual dependency list; the workspace relies on its subpackages and uv lockfile to manage per-service dependencies. - Refresh uv.lock to match the trimmed root dependency set. - Add CLAUDE.md describing the workspace layout, common development and database commands, the Nginx/backend/runtime auth request flow, and the boundaries to keep in mind when changing services.
14 lines
192 B
TOML
14 lines
192 B
TOML
[project]
|
|
name = "model-platform"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = []
|
|
|
|
[tool.uv.workspace]
|
|
members = [
|
|
"backend",
|
|
"runtime",
|
|
"common",
|
|
"schedule",
|
|
]
|