Skip to content

jobbrIO/jobbr-artefactstorage-filesystem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jobbr FileSystem Storage Provider Develop build status

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.

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/demo). In addition to that you'll need to install the NuGet Package for this extension.

NuGet

Install-Package Jobbr.ArtefactStorage.FileSystem

Configuration

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.

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:

About

Stores Job related artefacts in the filesystem

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages