- Исправлены TypeScript ошибки в Step3Payment.tsx (типизация, неиспользуемые импорты) - Добавлены недостающие зависимости: aiomysql, pymysql, python-multipart - Обновлен requirements.txt с актуальными версиями - Добавлены новые API endpoints: policy check, file upload - Добавлен policy_service для работы с MySQL - Все сервисы успешно запущены и работают - Обновлен SESSION_LOG с документацией процесса
48 lines
669 B
Plaintext
48 lines
669 B
Plaintext
# Core FastAPI
|
|
fastapi==0.115.0
|
|
uvicorn[standard]==0.32.0
|
|
python-multipart==0.0.20
|
|
websockets==14.1
|
|
|
|
# Database
|
|
sqlalchemy[asyncio]==2.0.35
|
|
asyncpg==0.30.0
|
|
aiomysql==0.3.2
|
|
pymysql==1.1.2
|
|
alembic==1.14.0
|
|
|
|
# Redis & RabbitMQ
|
|
redis==5.2.0
|
|
hiredis==3.0.0
|
|
aio-pika==9.4.3
|
|
|
|
# HTTP & File operations
|
|
httpx==0.27.2
|
|
aiofiles==24.1.0
|
|
|
|
# S3
|
|
boto3==1.35.56
|
|
aioboto3==13.2.0
|
|
|
|
# Validation
|
|
pydantic==2.10.0
|
|
pydantic-settings==2.6.0
|
|
email-validator==2.2.0
|
|
|
|
# Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
|
|
# Utils
|
|
python-dotenv==1.0.1
|
|
python-slugify==8.0.4
|
|
pytz==2024.2
|
|
|
|
# Logging
|
|
structlog==24.4.0
|
|
|
|
# Testing
|
|
pytest==8.3.3
|
|
pytest-asyncio==0.24.0
|
|
pytest-cov==6.0.0
|