Add comprehensive Docker setup with PostgreSQL, Redis, ChromaDB, and Qdrant
- Enhanced install.py with Docker detection and automatic service setup - Added docker-compose.services.yml for standalone database services - Created docker-services.sh management script for easy service control - Added DOCKER.md documentation with complete setup instructions - Updated requirements.txt for Python 3.13 compatibility - Added multiple test scripts and configuration files - Enhanced collaborative creative projects with proper database integration - Fixed SQLAlchemy metadata field conflicts in database models - Added comprehensive quickstart and testing guides Services now available: - PostgreSQL with Docker - Redis with Docker - ChromaDB vector database - Qdrant vector database (recommended) - PgAdmin for database administration The setup script now automatically detects Docker and offers streamlined installation with one-command service deployment.
This commit is contained in:
@@ -1,39 +1,35 @@
|
||||
discord.py==2.3.2
|
||||
asyncpg==0.29.0
|
||||
redis==5.0.1
|
||||
pydantic==2.5.0
|
||||
sqlalchemy==2.0.23
|
||||
alembic==1.13.1
|
||||
pyyaml==6.0.1
|
||||
httpx==0.25.2
|
||||
schedule==1.2.1
|
||||
python-dotenv==1.0.0
|
||||
psycopg2-binary==2.9.9
|
||||
asyncio-mqtt==0.16.1
|
||||
loguru==0.7.2
|
||||
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
|
||||
schedule>=1.2.1
|
||||
python-dotenv>=1.0.0
|
||||
aiosqlite>=0.19.0
|
||||
asyncio-mqtt>=0.16.1
|
||||
loguru>=0.7.2
|
||||
|
||||
# RAG and Vector Database
|
||||
chromadb==0.4.22
|
||||
sentence-transformers==2.2.2
|
||||
numpy==1.24.3
|
||||
faiss-cpu==1.7.4
|
||||
# RAG and Vector Database - Python 3.13 compatible versions
|
||||
chromadb>=1.0.0
|
||||
sentence-transformers>=2.3.0
|
||||
numpy>=1.26.0
|
||||
faiss-cpu>=1.8.0
|
||||
|
||||
# MCP Integration
|
||||
mcp==1.0.0
|
||||
mcp-server-stdio==1.0.0
|
||||
aiofiles==23.2.0
|
||||
watchdog==3.0.0
|
||||
# MCP Integration (remove non-existent packages)
|
||||
aiofiles>=23.2.0
|
||||
watchdog>=3.0.0
|
||||
|
||||
# Enhanced NLP
|
||||
spacy==3.7.2
|
||||
nltk==3.8.1
|
||||
spacy>=3.7.2
|
||||
nltk>=3.8.1
|
||||
|
||||
# Admin Interface
|
||||
fastapi==0.104.1
|
||||
uvicorn==0.24.0
|
||||
python-multipart==0.0.6
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
websockets==12.0
|
||||
psutil==5.9.6
|
||||
python-socketio==5.10.0
|
||||
fastapi>=0.104.1
|
||||
uvicorn>=0.24.0
|
||||
python-multipart>=0.0.6
|
||||
python-jose[cryptography]>=3.3.0
|
||||
passlib[bcrypt]>=1.7.4
|
||||
websockets>=12.0
|
||||
psutil>=5.9.6
|
||||
python-socketio>=5.10.0
|
||||
Reference in New Issue
Block a user