- Rename EngagementEvent.metadata → event_metadata (SQLAlchemy reserved name) - Replace passlib with direct bcrypt usage (passlib incompatible with bcrypt 5.0) - Fix renderer Dockerfile: npm ci → npm install (no lockfile) - Fix frontend Dockerfile: single-stage, skip tsc for builds - Remove deprecated 'version' key from docker-compose.yml - Add docker-compose.dev.yml for data-stores-only local dev - Add start_period to API healthcheck for startup grace
35 lines
805 B
TOML
35 lines
805 B
TOML
[project]
|
|
name = "fractafrag-api"
|
|
version = "0.1.0"
|
|
description = "Fractafrag API — GLSL shader platform backend"
|
|
requires-python = ">=3.12"
|
|
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"sqlalchemy[asyncio]>=2.0.36",
|
|
"asyncpg>=0.30.0",
|
|
"psycopg2-binary>=2.9.10",
|
|
"alembic>=1.14.0",
|
|
"pydantic>=2.10.0",
|
|
"pydantic-settings>=2.7.0",
|
|
"email-validator>=2.2.0",
|
|
"pgvector>=0.3.6",
|
|
"redis>=5.2.0",
|
|
"celery[redis]>=5.4.0",
|
|
"bcrypt>=4.2.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"cryptography>=43.0.0",
|
|
"httpx>=0.28.0",
|
|
"python-multipart>=0.0.12",
|
|
"stripe>=11.0.0",
|
|
"numpy>=2.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
"httpx>=0.28.0",
|
|
"ruff>=0.8.0",
|
|
]
|