-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.dist.ts
45 lines (43 loc) · 1.33 KB
/
config.dist.ts
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
/** Configuration template with default values.
Copy to js/config/config.ts after checkout and adapt to your preferences.
*/
import type { LogLevelDesc } from "loglevel";
import snikConf from "./config.snik";
//import hitoConf from "./config.hito";
export const config = {
nodeSize: 39,
activeOptions: ["edgecolor"], // initially active options, choose a subset of: ["showproperty", "day", "edgecolor"]
searchCloseMatch: true,
// only used for mobile, desktop will always use cxttapstart
logLevelConsole: "debug" as LogLevelDesc,
logLevelDisplay: "info" as LogLevelDesc,
logLevelMemory: "debug" as LogLevelDesc,
layoutCacheMinRecall: 0.95,
layoutCacheMinPrecision: 0.5,
language: "en",
download: {
image: {
max: { width: 5000, height: 4000 },
standard: { width: 1920, height: 1920 },
},
},
// Change this when you want to use a different ontology. Refer to ./config.snik.ts and ./config.hito.ts for examples.
ontology: snikConf,
multiview: {
initialTabs: 1,
warnOnSessionLoad: true,
},
git: {
defaultIssueAssignee: "KonradHoeffner", // if you fork, please change
issueLabels: {
bug: "bug",
confirmLink: "link",
deleteTriple: "deletetriple",
deleteClass: "deleteclass",
},
repo: {
ontology: "https://github.com/snikproject/ontology",
application: "https://github.com/snikproject/graph",
},
},
};