feat: initial corvid — standalone ticket service extracted from homelab-dashboard
Extracts the ticket/attachment system into a reusable pip-installable package. Centralises homelab MCP server (tickets, attachments, system logs) here. - corvid package: models, router (make_router factory), config, standalone main - Alembic migration chain for fresh standalone deployments - Docker Compose for standalone deployment (port 8090) - mcp_server.py: moved from homelab-dashboard, CORVID_REPO_PATH configurable Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
37b2c21720
27 changed files with 1072 additions and 0 deletions
18
corvid.egg-info/PKG-INFO
Normal file
18
corvid.egg-info/PKG-INFO
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
Metadata-Version: 2.4
|
||||
Name: corvid
|
||||
Version: 0.1.0
|
||||
Summary: Standalone ticket management service for AI agents
|
||||
Requires-Python: >=3.12
|
||||
Requires-Dist: fastapi>=0.115
|
||||
Requires-Dist: sqlalchemy[asyncio]>=2.0
|
||||
Requires-Dist: asyncpg>=0.30
|
||||
Requires-Dist: uvicorn[standard]>=0.32
|
||||
Requires-Dist: alembic>=1.14
|
||||
Requires-Dist: pydantic>=2.0
|
||||
Provides-Extra: mcp
|
||||
Requires-Dist: mcp[cli]>=1.0; extra == "mcp"
|
||||
Requires-Dist: httpx>=0.28; extra == "mcp"
|
||||
Provides-Extra: dev
|
||||
Requires-Dist: pytest>=8.0; extra == "dev"
|
||||
Requires-Dist: pytest-asyncio>=0.24; extra == "dev"
|
||||
Requires-Dist: aiosqlite>=0.20; extra == "dev"
|
||||
12
corvid.egg-info/SOURCES.txt
Normal file
12
corvid.egg-info/SOURCES.txt
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
pyproject.toml
|
||||
corvid/__init__.py
|
||||
corvid/config.py
|
||||
corvid/database.py
|
||||
corvid/main.py
|
||||
corvid/models.py
|
||||
corvid/router.py
|
||||
corvid.egg-info/PKG-INFO
|
||||
corvid.egg-info/SOURCES.txt
|
||||
corvid.egg-info/dependency_links.txt
|
||||
corvid.egg-info/requires.txt
|
||||
corvid.egg-info/top_level.txt
|
||||
1
corvid.egg-info/dependency_links.txt
Normal file
1
corvid.egg-info/dependency_links.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
15
corvid.egg-info/requires.txt
Normal file
15
corvid.egg-info/requires.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
fastapi>=0.115
|
||||
sqlalchemy[asyncio]>=2.0
|
||||
asyncpg>=0.30
|
||||
uvicorn[standard]>=0.32
|
||||
alembic>=1.14
|
||||
pydantic>=2.0
|
||||
|
||||
[dev]
|
||||
pytest>=8.0
|
||||
pytest-asyncio>=0.24
|
||||
aiosqlite>=0.20
|
||||
|
||||
[mcp]
|
||||
mcp[cli]>=1.0
|
||||
httpx>=0.28
|
||||
1
corvid.egg-info/top_level.txt
Normal file
1
corvid.egg-info/top_level.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
corvid
|
||||
Loading…
Add table
Add a link
Reference in a new issue