Files
hive/backend/.env.production
anthonyrawlins 268214d971 Major WHOOSH system refactoring and feature enhancements
- Migrated from HIVE branding to WHOOSH across all components
- Enhanced backend API with new services: AI models, BZZZ integration, templates, members
- Added comprehensive testing suite with security, performance, and integration tests
- Improved frontend with new components for project setup, AI models, and team management
- Updated MCP server implementation with WHOOSH-specific tools and resources
- Enhanced deployment configurations with production-ready Docker setups
- Added comprehensive documentation and setup guides
- Implemented age encryption service and UCXL integration

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-27 08:34:48 +10:00

31 lines
651 B
Plaintext

# Production Environment Configuration
DATABASE_URL=postgresql://whoosh:whoosh@postgres:5432/whoosh
REDIS_URL=redis://redis:6379/0
# Application Settings
LOG_LEVEL=info
CORS_ORIGINS=https://whoosh.deepblack.cloud,http://whoosh.deepblack.cloud
MAX_WORKERS=2
# Database Pool Settings
DB_POOL_SIZE=10
DB_MAX_OVERFLOW=20
DB_POOL_RECYCLE=3600
# HTTP Client Settings
HTTP_TIMEOUT=30
HTTP_POOL_CONNECTIONS=100
HTTP_POOL_MAXSIZE=100
# Health Check Settings
HEALTH_CHECK_TIMEOUT=10
STARTUP_TIMEOUT=60
# Security Settings
SECRET_KEY=your-secret-key-here
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Monitoring
PROMETHEUS_ENABLED=true
METRICS_PORT=9090