Skip to content

Instantly share code, notes, and snippets.

@sajadkardel
Last active May 5, 2021 10:50
Show Gist options
  • Save sajadkardel/fb9088bf0aab1f506b297577a922c0f6 to your computer and use it in GitHub Desktop.
Save sajadkardel/fb9088bf0aab1f506b297577a922c0f6 to your computer and use it in GitHub Desktop.
HangFire
public void Configure(IApplicationBuilder app, IBackgroundJobClient backgroundJobs, IHostingEnvironment env)
{
// HangFire Dashboard
app.UseHangfireDashboard();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
// HangFire Dashboard endpoint
endpoints.MapHangfireDashboard();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment