-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathconfigGeneral.html
More file actions
120 lines (118 loc) · 4.23 KB
/
configGeneral.html
File metadata and controls
120 lines (118 loc) · 4.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
---
layout: default
title: Config | General
section: configGeneral
path: docs/configGeneral.html
---
<h1 class="ui dividing header">
Config: General
</h1>
<p>
For general config, you have to change the following parameters in <a class="ui label" href="https://github.com/ali1k/ld-r/blob/master/configs/general.sample.js">configs/general.js</a>:
</p>
<table class="ui celled table">
<thead>
<tr>
<th>Parameter</th>
<th>Description</th>
<th>Example value</th>
</tr>
</thead>
<tbody>
<tr>
<td class="positive">appFullTitle</td>
<td> The title which appears as page title of your application.</td>
<td>['Linked Data Reactor']</td>
</tr>
<tr >
<td class="positive">appShortTitle</td>
<td>Short title of your application.</td>
<td>['LD-Reactor']</td>
</tr>
<tr >
<td class="positive">baseResourceDomain</td>
<td>the domain name under which basic dynamic resources and user resources will be defined.</td>
<td>['http://ld-r.org']</td>
</tr>
<tr >
<td class="positive">defaultDatasetURI</td>
<td>URI of the default dataset to be viewed/browsed/edited. If not set, will consider all existing graph names in 'generic' endpoint.</td>
<td>['http://dbpedia.org']</td>
</tr>
<tr >
<td class="positive">enableAuthentication</td>
<td>If set to '1', will prevent access to datasets unless user is registered and logged in to the system.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">authDatasetURI</td>
<td>URI of the dataset used to store user's data. It is required if <span class="ui label">enableAuthentication</span> is set to '1'.</td>
<td>https://ld-r.org/users</td>
</tr>
<tr >
<td class="positive">enableUserConfirmation</td>
<td>If set to '1', will allow super users to confirm and activate registered users.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">enableEmailNotifications</td>
<td>If set to '1', will enable email notifications on new user registration, user account activation, etc.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">enableEmailNotifications</td>
<td>If set to '1', will enable email notifications on new user registration, user account activation, etc.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">useGoogleRecaptcha</td>
<td>If you want to enable Google recaptcha for user registration. Tracking code for the Google recaptcha service should be added to server config.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">enableLogs</td>
<td>If set to '1', will log all update actions of users in the 'log' directory.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">googleAnalyticsID</td>
<td>When provided, will track the users on your LD-R instance using Google Analytics.</td>
<td>0</td>
</tr>
<tr >
<td class="positive">enableDynamicServerConfiguration</td>
<td>if set to '1', will use the server configs stored in a triple store.</td>
<td>1</td>
</tr>
<tr >
<td class="positive">enableDynamicReactorConfiguration</td>
<td>if set to '1', will use the reactor configs stored in a triple store.</td>
<td>1</td>
</tr>
<tr >
<td class="positive">enableDynamicFacetsConfiguration</td>
<td>if set to '1', will use the facets configs stored in a triple store.</td>
<td>1</td>
</tr>
<tr >
<td class="positive">enableAddingNewDatasets</td>
<td>if set to '1', wil allow users to create new datasets.</td>
<td>1</td>
</tr>
<tr >
<td class="positive">enableDatasetAnnotation</td>
<td>if set to '1', wil allow users to annotate existing datasets using NLP APIs.</td>
<td>1</td>
</tr>
<tr >
<td class="positive">enableQuerySaveImport</td>
<td>if set to '1', wil allow users to store their queries and import them later on to reproduce their browsing experience.</td>
<td>1</td>
</tr>
<tr >
<td class="positive">configDatasetURI</td>
<td>dataset/graphName that stores your dynamic configurations</td>
<td>['http://ld-r.org/configurations']</td>
</tr>
</tbody>
</table>