Skip to content

Instantly share code, notes, and snippets.

@jessemlay
Created November 30, 2016 17:03
Show Gist options
  • Save jessemlay/d167e940203ec9f307f7215d94bc3e74 to your computer and use it in GitHub Desktop.
Save jessemlay/d167e940203ec9f307f7215d94bc3e74 to your computer and use it in GitHub Desktop.
using Hangfire;
// ...
public void Configuration(IAppBuilder app)
{
GlobalConfiguration.Configuration.UseSqlServerStorage("<connection string or its name>");
app.UseHangfireDashboard();
app.UseHangfireServer();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment