19 lines
509 B
TOML
19 lines
509 B
TOML
[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"
|