mausch / QuartzNetWebConsole

Embeddable Quartz.Net web console
Other
160 stars 62 forks source link

Embeddable web admin for the Quartz.NET scheduler

Nuget package.

An old blog post that's still relevant about what the project does.

To set this up in your ASP.NET Core (or any OWIN-compatible framework really), add to your Startup:

    app.UseOwin(m =>
    {
        m(Setup.Owin("/quartz/", () => Program.Scheduler));
        Setup.Logger = new MemoryLogger(100, "/quartz/");
    });

This repo also has a reference sample app.