This is a storage provider implementation for the Jobbr .NET JobServer to store artefacts related from job runs on the filesystem in a folder of your choice. 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.FileSystem
Since you already have a configured server, the registration of the provider is quite easy. See Example below
using Jobbr.ArtefactStorage.FileSystem;
/* ... */
var builder = new JobbrBuilder();
builder.AddFileSystemArtefactStorage(config =>
{
// the only required property, can be relative, or an UNC-Path
config.DataDirectory = @"D:\\ApplicationX\Data\JobRunStore";
});
server.Start();
Notice: UNC-Paths are generally possible if they are reliable but have not been tested yet. If you're seeking for a high available implementation, the RavenFS extension might be the better candidate for you.
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: