Quickstart¶
Get Orion running and trigger your first content pipeline in under 5 minutes. This guide walks you through the complete flow — from starting the platform to generating and approving content.
Start the Platform¶
Wait for all services to become healthy:
# Watch container health status
docker compose -f deploy/docker-compose.yml ps
# Or check through the CLI
cd cli && uv run orion system health
Startup time
Allow up to 90 seconds for all health checks to pass. PostgreSQL and Milvus initialize their data directories on first run.
Database Management
Start pgAdmin and Databasus with make up-tools:
- pgAdmin: http://localhost:5050 — browse tables, run queries
- Databasus: http://localhost:4005 — configure automated backups
Authenticate¶
You need a JWT token to interact with the API. The default development credentials are admin@orion.local / orion_dev.
Verify your session:
Trigger a Trend Scan¶
Kick off the Scout service to detect trending topics from external sources.
View Detected Trends¶
After a scan completes, Scout publishes orion.trend.detected events to Redis. You can query the results immediately.
Generate Content¶
When Scout detects a trend, the Director service automatically picks it up via Redis pub/sub and starts a LangGraph pipeline. You can also trigger content generation manually.
Review, Approve, and Publish¶
Content goes through a human-in-the-loop review stage before publishing.
# List all content items
orion content list
# View full details of a content item (script, assets, metadata)
orion content view <content-id>
# Approve content for publishing
orion content approve <content-id>
# Reject content
orion content reject <content-id>
# Request regeneration
orion content regenerate <content-id>
# Check final publish status
orion content view <content-id>
What Happens Behind the Scenes¶
When you trigger a scan, the following event-driven pipeline executes automatically:
sequenceDiagram
participant User
participant Gateway
participant Scout
participant Redis
participant Director
participant Media
participant Editor
User->>Gateway: POST /api/v1/scout/api/v1/trends/scan
Gateway->>Scout: Proxy request
Scout->>Scout: Poll external sources
Scout->>Redis: Publish orion.trend.detected
Redis->>Director: Deliver event
Director->>Director: LangGraph pipeline (strategist -> creator)
Director->>Redis: Publish orion.content.created
Redis->>Media: Deliver event
Media->>Media: Generate images (ComfyUI/Fal.ai)
Media->>Redis: Publish orion.media.generated
Redis->>Editor: Deliver event
Editor->>Editor: Render video (TTS + stitch + subtitles)
Each service communicates exclusively through Redis pub/sub — there are no direct HTTP calls between Python services. This decoupled architecture means any service can be restarted or scaled independently without affecting the pipeline.
Next Steps¶
- Configuration — Tune environment variables, rate limits, and AI providers
- CLI Reference — Full list of all CLI commands and flags
- API Endpoints — REST API documentation for programmatic access
- LangGraph Pipeline — Understand the content creation graph
- Docker Deployment — Production deployment and scaling
Explore Further
- Demo Mode — Run the dashboard without backend services using demo data
- Full Pipeline Demo — Walk through the complete content pipeline end-to-end
- Dashboard Tour — Visual tour of every dashboard page