linked-data-reactor
Version:
Linked Data Reactor provides a framework to view, browse and edit Linked Data in a flexible way.
54 lines (46 loc) • 2.14 kB
JavaScript
export default {
//full page title
appFullTitle: ['Linked Data Reactor'],
//short page title
appShortTitle: ['LD-R'],
//Default Dataset under observation, if not set , will consider all existing graph names
defaultDatasetURI: [''],
//will prevent access if not logged in
enableAuthentication: 0,
//graph that stores users data, must be loaded beforehand
authDatasetURI: ['http://ld-r.org/users'],
//will allow super users to confirm and activate regiastered users
enableUserConfirmation: 0,
//if enabled will allow a recaptcha box in the registration form
//note: if it is enabled, you need to set the key parameteres for recaptcha in the server.js file
useGoogleRecaptcha: 0,
//the domain name under which basic dynamic resources and user resources will be defined
baseResourceDomain: ['http://ld-r.org'],
//will enable email notifications
enableEmailNotifications: 0,
//will put all update actions in log folder
enableLogs: 0,
//if provided will track the users on your LD-R instance
googleAnalyticsID: '',
//if set, will use the configs stored in a triple store
enableDynamicServerConfiguration: 1,
enableDynamicReactorConfiguration: 1,
enableDynamicFacetsConfiguration: 1,
//if set, wil allow users to create new datasets
//only works if enableDynamicReactorConfiguration is set to 1 and triple store allows update qureies
enableAddingNewDatasets: 1,
//allows users to annotate datasets using NLP APIs
enableDatasetAnnotation: 1,
//allows users to save and import a SPARQL query from/to the system: WYSIWYQ concept
enableQuerySaveImport: 1,
//graph that stores your configurations
configDatasetURI: ['http://ld-r.org/configurations'],
//will enable/disable auto config
enableAutomaticConfiguration: 0,
//the path to the upload folder
uploadFolder: ['./uploaded'],
//will enable csv imports
enableCSVImport: 1,
//graph that stores your mapping configurations for imprting other formats such as CSV
mappingsDatasetURI: ['http://ld-r.org/mappings']
};