V1 de backend funcional

This commit is contained in:
Sebastian
2025-09-08 21:46:10 +00:00
commit 48f53280be
58 changed files with 7646 additions and 0 deletions

18
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "backend"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"azure-storage-blob>=12.26.0",
"fastapi>=0.116.1",
"pydantic-settings>=2.10.1",
"python-dotenv>=1.1.1",
"python-multipart>=0.0.20",
"qdrant-client>=1.15.1",
"uvicorn[standard]>=0.35.0",
]
[project.scripts]
dev = "uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload"
start = "uvicorn app.main:app --host 0.0.0.0 --port 8000"