Installation
Install and register the TickerQ dashboard.
Install
dotnet add package TickerQ.DashboardRegister
Chain .AddDashboard() on TickerOptionsBuilder:
builder.Services.AddTickerQ(opt =>
{
opt.AddDashboard();
});
var app = builder.Build();
app.UseTickerQ();
app.Run();The dashboard is now available at /tickerq/dashboard.
That's it — UseTickerQ() auto-configures all dashboard middleware, static files, API endpoints, and the SignalR hub. No extra route mapping needed.
With options
opt.AddDashboard(dashboard =>
{
dashboard.SetBasePath("/admin/tickerq");
dashboard.WithBasicAuth("admin", "secret");
});See Authentication and Customization for all options.