This is an artefact storage provider implementation for the Jobbr .NET JobServer to store artefacts related from job runs in RavenFS. 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.ArtefactStorage.RavenFS
Configure RavenFS using the extension method on the JobbrBuilder
instance.
using Jobbr.ArtefactStorage.RavenFS;
/* ... */
var builder = new JobbrBuilder();
jobbrBuilder.AddRavenFsArtefactStorage(config =>
{
config.Url = "http://localhost:8080";
config.FileSystem = "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: