Skip to content

ykankaya/jobbr-storage-ravendb

 
 

Repository files navigation

Jobbr RavenDB Storage Provider Develop build status

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.

Master build status NuGet-Stable Develop build status NuGet Pre-Release

Installation

First of all you'll need a working jobserver by using the usual builder as shown in the demos (jobbrIO/jobbr-demo). In addition to that you'll need to install the NuGet Package for this extension.

NuGet

Install-Package Jobbr.Storage.RavenDB

Configuration

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();

License

This software is licenced under GPLv3. See LICENSE, and the related licences of 3rd party libraries below.

Acknowledgements

This extension is built using the following great open source projects

Credits

This application was built by the following awesome developers:

  • Michael Schnyder
  • Oliver Zürcher

About

Storage adapter for RavenDB

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%