Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 895 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 895 Bytes

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