-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelias.json
56 lines (56 loc) · 1.09 KB
/
pelias.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
{
"logger": {
"level": "info",
"timestamp": false
},
"esclient": {
"apiVersion": "7.5",
"hosts": [
{ "host": "elasticsearch" }
]
},
"elasticsearch": {
"settings": {
"index": {
"refresh_interval": "10s",
"number_of_replicas": "0",
"number_of_shards": "4"
}
},
"mappings": {
"_source": {
"excludes": ["phrase"]
}
}
},
"acceptance-tests": {
"endpoints": {
"docker": "http://api:4000/v1/"
}
},
"api": {
"services": {
"pip": { "url": "http://pip:4200" },
"libpostal": { "url": "http://libpostal:4400" },
"placeholder": { "url": "http://placeholder:4100" },
"interpolation": { "url": "http://interpolation:4300" }
}
},
"imports": {
"adminLookup": {
"enabled": true
},
"csv": {
"datapath": "/data/csv",
"files": [],
"download": [
]
},
"whosonfirst": {
"datapath": "/data/whosonfirst",
"importPostalcodes": true,
"importShapes": true,
"countryCode": ["PR", "VI", "US"]
}
}
}