feat: creatives and external channels

This commit is contained in:
Artem Tsyrulnikov
2025-11-10 15:13:38 +03:00
parent 3800c72662
commit cd167fdb43
73 changed files with 3024 additions and 947 deletions

View File

@@ -9,6 +9,8 @@ dependencies = [
"asyncpg>=0.30.0",
"fastapi>=0.121.0",
"pydantic-settings>=2.11.0",
"pyjwt>=2.10.1",
"python-multipart>=0.0.20",
"sqlalchemy[asyncio]>=2.0.38",
"uvicorn>=0.38.0",
]
@@ -26,7 +28,9 @@ dev = [
[tool.ruff]
exclude = [".venv"]
target-version = "py313"
line-length = 100
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
@@ -35,8 +39,6 @@ select = [
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.ruff.lint]
ignore = ["B008"]
[tool.ruff.format]