This is a storage adapter implementation for the Jobbr .NET JobServer to store job related information in RavenDB. The Jobbr main repository can be found on JobbrIO/jobbr-server.
First of all you'll need a working jobserver by using the usual builder as shown in the demos (jobbrIO/demo). In addition to that you'll need to install the NuGet Package for this extension.
Install-Package Jobbr.Storage.RavenDB
To configure the Jobbr server to use RavenDB, use the AddRavenDbStorage extension method on JobbrBuilder:
using Jobbr.Storage.RavenDB;
/* ... */
var builder = new JobbrBuilder();
builder.AddRavenDbStorage(config =>
{
config.Url = "http://localhost:8080";
config.Database = "Jobbr";
});
server.Start();
This software is licenced under GPLv3. See LICENSE, and the related licences of 3rd party libraries below.
This extension is built using the following great open source projects
This application was built by the following awesome developers: