Initialize Aidoit v0.1 monorepo
CI / frontend (push) Canceled after 0s
CI / api (push) Canceled after 0s

This commit is contained in:
Pavel Kerndl
2026-07-27 18:27:37 +02:00
commit c0b013f067
65 changed files with 1323 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[project]
name = "aidoit-api"
version = "0.1.0"
description = "Shared REST API for Aidoit"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"pydantic-settings>=2.7",
"sqlalchemy>=2.0",
"psycopg[binary]>=3.2",
"alembic>=1.14",
"redis>=5.2",
"httpx>=0.28"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.25",
"ruff>=0.9",
"mypy>=1.14"
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]