mrjamiebowman / Hangfire.JobManagement

.NET Hangfire extension for Job Management.
MIT License
1 stars 0 forks source link

mrjamiebowman.Hangfire.JobManagement

NuGet Build status Build Status Official Site License MIT

Note: This is a fork that's going a different direction. Just getting started... Below will be updated. - 05/27/2024 @mrjamiebowman

dashboard

A simple dashboard to extend Hangfire's dashboard.

Instructions

Install a package from NuGet.

Install-Package Hangfire.JobManagement

Then add this in your code:

For .NET :

for service side:

services.AddHangfire(config => config.UseSqlServerStorage(Configuration.GetConnectionString("HangfireConnection"))
                                                 .UseJobManagement(typeof(Startup).Assembly))

For .NET Framework :

for startup side:

GlobalConfiguration.Configuration.UseSqlServerStorage("HangfireConnection").UseJobManagement(typeof(Startup).Assembly)

Credits

License

Authored by: Brayan Mota (bamotav)

This project is under MIT license. You can obtain the license copy here.