Files
hive/backend/requirements.txt
anthonyrawlins 2547a5c2b3 Complete authentication system deployment with full dependency resolution
- Fixed PyJWT dependency issue in requirements.txt
- Added email-validator for pydantic email field validation
- Successfully deployed complete authentication stack
- All services now running (6/6) with authentication system active

Final deployment status:
 Backend: anthonyrawlins/hive-backend:auth-system-final (1/1)
 Frontend: anthonyrawlins/hive-frontend:auth-system (1/1)
 Database: postgres:15 (1/1)
 Redis: redis:7-alpine (1/1)
 Prometheus: prom/prometheus:latest (1/1)
 Grafana: grafana/grafana:latest (1/1)

Authentication features ready:
- JWT Bearer Token system
- API key generation with scopes
- User management with secure authentication
- Complete UI for auth management
- Database initialization with admin user

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-10 21:39:28 +10:00

53 lines
813 B
Plaintext

# FastAPI and ASGI
fastapi==0.115.0
uvicorn[standard]==0.32.1
python-multipart==0.0.12
gunicorn==23.0.0
# Database
sqlalchemy==2.0.36
psycopg2-binary==2.9.10
asyncpg==0.30.0
alembic==1.14.0
# Redis and Caching
redis==5.2.1
# HTTP Clients
aiohttp==3.9.1
httpx==0.25.2
requests==2.31.0
# SSH Client for CLI Agents
asyncssh==2.14.2
# Authentication and Security
python-jose[cryptography]==3.3.0
PyJWT==2.8.0
passlib[bcrypt]==1.7.4
email-validator==2.2.0
# Configuration and Environment
pydantic==2.10.4
pydantic-settings==2.7.0
python-dotenv==1.0.1
# YAML and JSON
PyYAML==6.0.2
orjson==3.10.12
# WebSockets and Socket.IO
websockets==14.1
python-socketio==5.12.0
# Monitoring and Metrics
prometheus-client==0.19.0
# Utilities
python-dateutil==2.8.2
click==8.1.7
rich==13.7.0
psutil==5.9.6
markdown==3.5.1