Right now, I have a single server set up for Hangfire. The problem that I’m having is that when jobs are running, the dashboard is pretty non-responsive - because the jobs are consuming CPU cycles (I’m assuming). So - I want to offload the dashboard to my ASP.NET app.
I’ve looked at the docs here (http://docs.hangfire.io/en/latest/configuration/using-dashboard.html) - and can easily accomplish this.
However, looking at the docs, there is nothing apparent that would prevent my ASP.NET application from processing jobs. I do not want it to process jobs at all - it simply needs to display the dashboard. Is there any documentation on how to set up a app to only handle the dashboard?