forked from boschglobal/oss-review-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reference.conf
65 lines (58 loc) · 1.49 KB
/
reference.conf
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
// A reference configuration file containing all possible ORT configuration options. Some of those options are mutually
// exclusive, so this file is only used to show all options and to validate the configuration.
ort {
scanner {
archive {
patterns = ["LICENSE*", "COPYING*"]
storage {
localFileStorage {
directory = ~/.ort/scanner/archive
compression = false
}
}
}
options {
// A map of maps from scanner class names to scanner-specific key-value pairs.
}
storages {
local {
backend {
localFileStorage {
directory = ~/.ort/scanner/results
compression = false
}
}
}
http {
backend {
httpFileStorage {
url = "https://your-http-server"
headers {
key1 = "value1"
key2 = "value2"
}
}
}
}
clearlyDefined {
serverUrl = "https://api.clearlydefined.io"
}
postgres {
url = "jdbc:postgresql://your-postgresql-server:5444/your-database"
schema = schema
username = username
password = password
sslmode = "required"
sslcert = "/defaultdir/postgresql.crt"
sslkey = "/defaultdir/postgresql.pk8"
sslrootcert = "/defaultdir/root.crt"
}
}
storageReaders: [
"local", "postgres", "http", "clearlyDefined"
]
storageWriters: [
"postgres"
]
}
}