mirror of
https://github.com/zvx-echo6/central.git
synced 2026-05-22 02:24:38 +02:00
feat(config): add CLI smoke command and dependencies
Add central-cli with config-store-check command that: - Connects via bootstrap config - Lists adapters from config store - Verifies crypto round-trip Updates pyproject.toml with new dependencies: - pydantic-settings>=2.7.0 - cryptography>=44.0.0 New entry points: - central-migrate - central-cli Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
8c5349c880
commit
3e392cad81
2 changed files with 79 additions and 0 deletions
|
|
@ -15,14 +15,18 @@ dependencies = [
|
|||
"aiolimiter>=1.2.1",
|
||||
"asyncpg>=0.31.0",
|
||||
"cloudevents>=2.0.0",
|
||||
"cryptography>=44.0.0",
|
||||
"nats-py>=2.14.0",
|
||||
"pydantic>=2,<3",
|
||||
"pydantic-settings>=2.7.0",
|
||||
"tenacity>=9.1.4",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
central-supervisor = "central.supervisor:main"
|
||||
central-archive = "central.archive:main"
|
||||
central-migrate = "central.migrate:main"
|
||||
central-cli = "central.cli:main"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/central"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue