forked from BeOpen-project/minio-sql-connector
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.template.js
More file actions
70 lines (70 loc) · 1.79 KB
/
config.template.js
File metadata and controls
70 lines (70 loc) · 1.79 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
module.exports = {
minioConfig: {
endPoint: 'play.min.io',
port: 9000,
useSSL: true,
accessKey: 'Q3AM3UQ867SPQQA43P2F',
secretKey: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG',
location: "us-east-1",
defaultFileInput: "../../input/inputFile.json",
defaultOutputFolderName: "private generic data",
defaultInputFolderName: "data model mapper",
defaultBucket: "default",
subscribe: {
all: true,
buckets: []
},
ownerInfoEndpoint: "https://platform.beopendep.it/api/owner"
},
postgreConfig: {
user: '',
host: 'localhost',
database: '',
password: '',
port: 5432
},
mapEndpoint: "http://localhost:8081/api/map/transform",
mapID: "",
orion: {
subscribe: true,
deleteAllDuplicateSubscriptions: true,
attrWithUrl: "datasetUrl",
orionBaseUrl: "http://localhost:1027",
notificationUrl: "http://host.docker.internal:3000/api/orion/subscribe",
fiwareService: "service",
fiwareServicePath: "/service"
},
logLevel: "info",
syncInterval: 86400000,
doNotSyncAtStart: false,
delays: 1,
queryAllowedExtensions: ["csv", "json", "geojson"],
parseCompatibilityMode: 0,
port: 3000,
updateOwner: "later",
writeLogsOnFile: true,
mongo: "mongodb://localhost:27017/Minio-Mongo", // mongo url
authConfig: {
idmHost: "https://platform.beopendep.it/auth",
clientId: "",
username: "",
password: "",
userInfoEndpoint: "https://platform.beopendep.it/api/user",
disableAuth: false,
authProfile: "oidc",
authRealm: "",
introspect: false,
publicKey: "",
secret: "" // don't push it
},
sourceConnectors: {
minioConnector: true,
apiConnector: true
},
queryOptions: {
simpleSearch: true,
advancedSearch: true,
SQLQuery: true,
graphQLQuery: true
}
}