All Projects → augustoproiete → hangfire-dashboard-customize

augustoproiete / hangfire-dashboard-customize

Licence: Apache-2.0 License
Customize your Hangfire Dashboard (e.g. Change the Title of the Dashboard)

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to hangfire-dashboard-customize

Hangfire
An easy way to perform background job processing in your .NET and .NET Core applications. No Windows Service or separate process required
Stars: ✭ 7,126 (+37405.26%)
Mutual labels:  background-jobs, scheduled-jobs, hangfire
React Native Background Job
Schedule background jobs in React Native that run your JavaScript when your app is in the background/killed.
Stars: ✭ 660 (+3373.68%)
Mutual labels:  background-jobs, scheduled-jobs
Jobrunr
An extremely easy way to perform background processing in Java. Backed by persistent storage. Open and free for commercial use.
Stars: ✭ 331 (+1642.11%)
Mutual labels:  background-jobs, scheduled-jobs
Schedex
Simple scheduling for Elixir
Stars: ✭ 173 (+810.53%)
Mutual labels:  background-jobs, scheduled-jobs
Minion
Background job system for .NET applications
Stars: ✭ 94 (+394.74%)
Mutual labels:  background-jobs, scheduled-jobs
Coravel
Near-zero config .NET Core micro-framework that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!
Stars: ✭ 1,989 (+10368.42%)
Mutual labels:  background-jobs, scheduled-jobs
flume
A blazing fast job processing system backed by GenStage & Redis.
Stars: ✭ 37 (+94.74%)
Mutual labels:  background-jobs, scheduled-jobs
Widget-Blur
This script for the Scriptable app creates widget backgrounds that appear to be transparent. You can also optionally emulate the light or dark blur effect used in the Batteries widget from Apple.
Stars: ✭ 113 (+494.74%)
Mutual labels:  customization
WindowsRegistry
Windows Registry Tweaks & Hacks
Stars: ✭ 31 (+63.16%)
Mutual labels:  customization
javelin
Party-based roguelike (open-source strategy-RPG game).
Stars: ✭ 57 (+200%)
Mutual labels:  customization
crontab
cron expression parser and executor for dotnet core.
Stars: ✭ 13 (-31.58%)
Mutual labels:  scheduled-jobs
flutter background
A flutter plugin to keep apps running in the background via foreground services. Currently Android only.
Stars: ✭ 58 (+205.26%)
Mutual labels:  background-jobs
RainbowTaskbar
Customizable Windows taskbar effects.
Stars: ✭ 39 (+105.26%)
Mutual labels:  customization
sidekiq-sequence
Sequential Sidekiq jobs for Rails
Stars: ✭ 38 (+100%)
Mutual labels:  background-jobs
MaterialFox-BigSur
A cleaner, more refined userChrome.css theme for Firefox—forked from MaterialFox
Stars: ✭ 62 (+226.32%)
Mutual labels:  customization
minimum-viable-startpage
A very simple startpage to replace new tab in a browser of choice.
Stars: ✭ 61 (+221.05%)
Mutual labels:  customization
zenaton-ruby
💎 Ruby gem to run and orchestrate background jobs with Zenaton Workflow Engine
Stars: ✭ 32 (+68.42%)
Mutual labels:  background-jobs
nvim
🍨 Soothing pastel theme for NeoVim
Stars: ✭ 659 (+3368.42%)
Mutual labels:  customization
konsave
Konsave lets use save your Linux customization and restore them very easily!
Stars: ✭ 336 (+1668.42%)
Mutual labels:  customization
gtk
🪟 Soothing pastel theme for GTK3
Stars: ✭ 150 (+689.47%)
Mutual labels:  customization
README.md

Hangfire.Dashboard.Customize

Customize the title of your Hangfire Dashboard.

NuGet Version Stack Overflow

Hangfire.Dashboard.Customize screenshot

Give a Star!

If you like or are using this project please give it a star. Thanks!

Getting started 🚀

Install the Hangfire.Dashboard.Customize package from NuGet:

Install-Package Hangfire.Dashboard.Customize

Call the method UseHangfireDashboardCustomOptions just before calling Hangfire's UseHangfireDashboard, in the configuration of your app:

public class Startup
{
    // ...

    public void Configure(IApplicationBuilder app)
    {
        // ...

        app.UseHangfireDashboardCustomOptions(new HangfireDashboardCustomOptions
        {
            DashboardTitle = () => "My Dashboard Title :)",
        });

        // ...

        app.UseHangfireDashboard();

        // ...
    }
}

In your HangfireDashboardCustomOptions instance, you can define a function that returns the title you would like to display in your Hangfire Dashboard.

The string defined in the DashboardTitle will be written to the page as a raw string, allowing the use of images and other HTML elements.

app.UseHangfireDashboardCustomOptions(new HangfireDashboardCustomOptions
{
    DashboardTitle = () => "<img src=\"logo.png\" /> <b>Scheduled Jobs</b>",
});

Release History

Click on the Releases tab on GitHub.


Copyright © 2019-2020 C. Augusto Proiete & Contributors - Provided under the Apache License, Version 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].