- Update docker-start.sh to force correct profiles (qdrant, admin) - Fix PostgreSQL port mapping from 5432 to 15432 across all configs - Resolve MCP import conflicts by renaming src/mcp to src/mcp_servers - Fix admin interface StaticFiles mount syntax error - Update LLM client to support both Ollama and OpenAI-compatible APIs - Configure host networking for Discord bot container access - Correct database connection handling for async context managers - Update environment variables and Docker compose configurations - Add missing production dependencies and Dockerfile improvements
24 lines
442 B
Plaintext
24 lines
442 B
Plaintext
# Minimal requirements for admin interface only
|
|
discord.py>=2.3.2
|
|
pydantic>=2.5.0
|
|
sqlalchemy>=2.0.23
|
|
alembic>=1.13.1
|
|
pyyaml>=6.0.1
|
|
httpx>=0.25.2
|
|
python-dotenv>=1.0.0
|
|
aiosqlite>=0.19.0
|
|
loguru>=0.7.2
|
|
|
|
# Admin Interface essentials
|
|
fastapi>=0.104.1
|
|
uvicorn>=0.24.0
|
|
python-multipart>=0.0.6
|
|
pyjwt>=2.8.0
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
websockets>=12.0
|
|
psutil>=5.9.6
|
|
python-socketio>=5.9.0
|
|
|
|
# Database driver
|
|
asyncpg>=0.29.0 |