TickerQTickerQ

Installation

Install and register the TickerQ dashboard.

Install

dotnet add package TickerQ.Dashboard

Register

Chain .AddDashboard() on TickerOptionsBuilder:

Program.cs
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.

On this page