feat: add boards and tasks management endpoints

This commit is contained in:
Abhimanyu Saharan
2026-02-04 02:28:51 +05:30
parent 23faa0865b
commit 1abc8f68f3
170 changed files with 6860 additions and 10706 deletions

View File

@@ -7,3 +7,33 @@ extend-exclude = '(\.venv|alembic/versions)'
profile = "black"
line_length = 100
skip = [".venv", "alembic/versions"]
[project]
name = "openclaw-agency-backend"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"fastapi==0.115.4",
"uvicorn[standard]==0.30.6",
"sqlmodel==0.0.22",
"sqlalchemy==2.0.34",
"alembic==1.13.2",
"psycopg[binary]==3.2.1",
"pydantic-settings==2.5.2",
"python-dotenv==1.0.1",
"httpx==0.27.2",
"websockets==12.0",
"rq==1.16.2",
"redis==5.1.1",
"fastapi-clerk-auth==0.0.9",
"sse-starlette==2.1.3",
]
[project.optional-dependencies]
dev = [
"black==24.10.0",
"flake8==7.1.1",
"isort==5.13.2",
"pytest==8.3.3",
"pytest-asyncio==0.24.0",
"ruff==0.6.9",
]