wahnsinn vibe

This commit is contained in:
Marek Lenczewski
2026-04-16 19:42:06 +02:00
parent 9c5da44f64
commit e3e88cc58e
127 changed files with 9456 additions and 3 deletions

32
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,32 @@
[project]
name = "shop-backend"
version = "0.1.0"
description = "Shopsystem Core + Apps"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sqlalchemy>=2.0",
"alembic>=1.13",
"psycopg[binary]>=3.2",
"redis>=5.0",
"pydantic>=2.9",
"pydantic-settings>=2.5",
"python-jose[cryptography]>=3.3",
"argon2-cffi>=23.1",
"httpx>=0.27",
"pgvector>=0.3",
"pyyaml>=6.0",
"jinja2>=3.1",
"aiosmtplib>=3.0",
"python-multipart>=0.0.9",
"punq>=0.7",
"email-validator>=2.2",
]
[tool.uv]
package = false
[tool.ruff]
line-length = 100
target-version = "py311"