-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
56 lines (40 loc) · 1.73 KB
/
readme.txt
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
//EXAMPLE FOR JSON SETTING FILE
// The Slashes mean its a Comment!
//This is an example textfile WONT WORK When used with Comments!
{
"verbose": true,
//Create a lot of Output
"ServerPort": "8080",
//Port where this server should be running on
"HostnametoListenTo": "MY_HOST_NAME_OR_IP",
//The Host Name of the Server
"Javaprefix": "java -jar -Xmx4g",
//The Prefix For the Java Executable. If you want to use a Speacial java or Change parameters
"LocationJar": "/LOCATION_IN_LOCAL_FILESYSTEM/SOURCE_PATH/Java_exec/contextviztest2.jar",
//The Full Location of the Backend Jar
"TDBStoreFolders":{
"en":"/LOCATION_IN_LOCAL_FILESYSTEM/dbpediaENPageLinks",
"de":"/LOCATION_IN_LOCAL_FILESYSTEM/dbpediaDEPageLinks"
},
//Where The TDBStores are The Language Code shows which Language they are good to Query for
"TDBStorePrefix":{
"en":"http://dbpedia.org/resource/",
"de":"http://dbpedia.org/resource/"
},
//The Prefix The Stores Usualy Use for Their Identifiers
"inputFolder": "/LOCATION_IN_LOCAL_FILESYSTEM/txt/",
//The Folder where the Text Files are that get Created as Instructions for the Process (Collection of requested Page Links with Hash)
"outputFolder": "/LOCATION_IN_LOCAL_FILESYSTEM/PUBLIC_FILE_FOLDER/",
//The Internal Location of the Files (mount it please?)
"LookupFolderFromOutside": "http://_THE_LOCATION_OF_THE_FILES/PUBLIC_FILE_FOLDER/"
//The Location where The Data Can be Accessed on the Web
}
//This Configures the User Tracking Connection just mysql is Availible Name User Password Database and Host!
"UserTracking" : {
"type":"mysql",
"Username":"Tracking",
"Password":"XXXXXX",
"host":"hostAdress",
"database":"Tracking",
}
// DONT FORGET TO CHANGE THE LOCATION OF THE SETTINGS FIE IN THE NODEJS EXECUTION SCRTIPT!