Compare commits
2 commits
fe023c2f97
...
923ed5bf83
| Author | SHA1 | Date | |
|---|---|---|---|
| 923ed5bf83 | |||
| f0a46db39f |
2 changed files with 13 additions and 5 deletions
|
|
@ -711,8 +711,8 @@
|
|||
"find": true
|
||||
},
|
||||
{
|
||||
"id": "keywords",
|
||||
"title": "Keywords",
|
||||
"id": "tags",
|
||||
"title": "Tags",
|
||||
"type": "layer",
|
||||
"autocomplete": true,
|
||||
"filter": true,
|
||||
|
|
@ -1007,10 +1007,10 @@
|
|||
*/
|
||||
"layers": [
|
||||
{
|
||||
"id": "keywords",
|
||||
"title": "Keywords",
|
||||
"id": "tags",
|
||||
"title": "Tags",
|
||||
"canAddAnnotations": {"member": true, "staff": true, "admin": true},
|
||||
"item": "Keyword",
|
||||
"item": "Tag",
|
||||
"autocomplete": true,
|
||||
"overlap": true,
|
||||
"type": "string"
|
||||
|
|
|
|||
8
vm/install_elasticsearch.sh
Executable file
8
vm/install_elasticsearch.sh
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
curl -sL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
|
||||
echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" > /etc/apt/sources.list.d/elasticsearch.list
|
||||
apt-get update -qq
|
||||
apt-get -y install elasticsearch
|
||||
systemctl enable elasticsearch.service
|
||||
systemctl start elasticsearch.service
|
||||
#curl -X GET "http://localhost:9200/?pretty"
|
||||
Loading…
Add table
Add a link
Reference in a new issue