Documentation Index
Fetch the complete documentation index at: https://hyrex.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Hyrex Cloud Dashboard
Access your monitoring dashboard at hyrex.io/cloud.Hyrex Studio
Web UI for monitoring tasks and workflows.Start Studio
hyrex studio
# Custom port
hyrex studio --port 8080
# Verbose logging
hyrex studio --verbose
Access at https://local.hyrex.studioFeatures
- Task status and history
- Queue depths
- Worker health
- Error tracking
- Workflow visualization
Environment Variables
# Required
HYREX_DATABASE_URL=postgresql://user:pass@localhost/hyrex
# Optional
STUDIO_PORT=1337
STUDIO_VERBOSE=true
# Optional - Log Storage (FOSS only)
HYREX_S3_LOG_BUCKET=your-bucket-name
AWS_ACCESS_KEY_ID=your-access-key
AWS_SECRET_ACCESS_KEY=your-secret-key
AWS_REGION=us-east-1
Task Logs
Task logs are automatically saved and accessible through the Hyrex Cloud dashboard. No additional configuration required - logs are managed by the Hyrex Cloud infrastructure.
Configure S3 storage to persist task logs:# S3 bucket for log storage
HYREX_S3_LOG_BUCKET=your-bucket-name
# AWS credentials (required for S3 access)
AWS_ACCESS_KEY_ID=your-access-key
AWS_SECRET_ACCESS_KEY=your-secret-key
AWS_REGION=us-east-1 # Optional, defaults to us-east-1
Once configured, logs for each task execution will be automatically saved to the specified S3 bucket and accessible through Hyrex Studio.