Skip to main content
Skip table of contents

Stores

The stores provide access to the data. They can be a database, a directory, an ftp or even a Gitlab repository. They can be configured in a json file "stores.json" referenced in "appsettings.json" under the key "StoreConfigFile"


Here is the list of implemented stores.


Base configuration

All stores have the same base configuration.

Name

Description

Type

Mandatory

Comment

Name

Name of the store.

string

TRUE

Should be unique

Type

Type of the store

string

TRUE


Status

Status of the store

string

FALSE

"deleted": the store is not used anymore and cannot be used

HealthCheck

Is a health check should be performed for this store?

bool

FALSE


Config

Contains the configuration of the store

JSON

TRUE



Example of the base configuration
CODE
{
	"Name": "df-staging",
	"Type": "postgresql",
	"HealthCheck": true,
	"Config": {
		"ConnectionString": ""
	}
}



JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.