/Hangfire.Dashboard.Dark

Hangfire.Dashboard.Dark shows the hangfire dashboard in a beautiful theme.

Primary LanguageC#

Hangfire.Dashboard.Dark

Build status NuGet

Hangfire.Dashboard.Dark shows the hangfire dashboard in a beautiful dark theme.

Features

dashboard

Setup

In .NET Core's Startup.cs:

public void ConfigureServices(IServiceCollection services)
{
    services.AddHangfire(config =>
    {
        ...
        config.UseDarkDashboard();
    });
}

Otherwise,

GlobalConfiguration.Configuration
    ...
    .UseDarkDashboard();

dashboard