-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
73 lines (72 loc) · 1.86 KB
/
config.json
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
{
"app_settings": {
"host": "127.0.0.1",
"port": 8080
},
"layout_settings": {
"nct": 0,
"prt": 0,
"neighborcountrange":0,
"la": {
"name": "YifanHuLayout",
"it": 100,
"distance": 260
},
"ncb": "cluster",
"nsb": "pr",
"ecb": "mix",
"et": "curve",
"bk_color": "#000"
},
"graph_settings": {
"eventsEnabled": true,
"doubleClickEnabled": false,
"enableEdgeHovering": true,
"singleHover": true,
"edgeHoverColor" : "edge",
"edgeHoverColor": "default",
"defaultEdgeHoverColor": "#777",
"edgeHoverSizeRatio": 10,
"edgeColor": "default",
"defaultHoverLabelBGColor": "#fff",
"defaultEdgeColor": "rgb(205, 220, 213)",
"minEdgeSize": 0.2,
"labelThreshold": 3,
"defaultLabelColor": "#fff",
"animationsTime": 1000,
"borderSize": 2,
"outerBorderSize": 3,
"defaultNodeOuterBorderColor": "rgb(72,227,236)",
"edgeHoverHighlightNodes": "circle",
"sideMargin": 10,
"edgeHoverExtremities": true,
"scalingMode": "outside",
"enableCamera": true
},
"data_sources": {
"elasticsearch": {
"host": "127.0.0.1",
"port": 9300,
"cluster.name": "elasticsearch",
"index": "myindex",
"type": "mytype"
},
"mongodb": {
"host": "127.0.0.1",
"port": 27017,
"database": "twittergrapher",
"collection": "tweets",
"field":"tweet"
},
"mysql": {
"host": "127.0.0.1",
"port": 3306,
"user":"root",
"password":"",
"database": "twittergrapher",
"table_name": "tweets",
"data_column": "tweet"
},
"file": "tweets.txt"
}
}