feat: LocalPro Finder — отзывы, рейтинги, чат, AI-оценка, диагностика, подписки

This commit is contained in:
2026-07-03 15:03:30 +00:00
commit ef711d461f
5 changed files with 320 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim AS base
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
+14
View File
@@ -0,0 +1,14 @@
fastapi==0.115.6
uvicorn[standard]==0.34.0
sqlalchemy[asyncio]==2.0.37
alembic==1.14.1
asyncpg==0.30.0
pydantic-settings==2.7.1
pydantic[email]==2.9.2
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
openai==1.58.1
redis[hiredis]==5.2.1
celery==5.4.0
stripe==11.3.0
python-multipart==0.0.18