Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov 2021-08-27 14:59:45 +02:00
parent f3c034bdc1
commit 2861588d4c
No known key found for this signature in database
GPG Key ID: C8787EFEB4B64AF0
2 changed files with 15 additions and 21 deletions

View File

@ -55,6 +55,4 @@ export function configurePlatform() {
addLocation(contactId, () => import(/* webpackChunkName: "contact" */ '@anticrm/contact-resources'))
addLocation(chunterId, () => import(/* webpackChunkName: "chunter" */ '@anticrm/chunter-resources'))
addLocation(recruitId, () => import(/* webpackChunkName: "recruit" */ '@anticrm/recruit-resources'))
}

View File

@ -1,51 +1,47 @@
//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 Hardcore Engineering Inc.
//
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
import { Client } from '@elastic/elasticsearch'
const url = process.env.ELASTIC_URL
if (url === undefined) {
console.error('please provide elastic url.')
process.exit(1)
}
const client = new Client({node: 'http://45.32.149.163:9200/'})
const client = new Client({ node: 'http://45.32.149.163:9200/' })
client.ingest.putPipeline({
id: 'anticrm-pipeline',
body: {
"processors" : [
{ "attachment" : { "field" : "attachment" } },
{ "remove" : { "field" : "attachment" } }
processors: [
{ attachment: { field: 'attachment' } },
{ remove: { field: 'attachment' } }
]
}
})
.then(function () {
console.log("putPipeline Resolved");
})
.catch(function (error) {
console.log("putPipeline error: " + error)
})
.then(function () {
console.log('putPipeline Resolved')
})
.catch(function (error) {
console.log('putPipeline error: ', error)
})
// // Create index
// client.create({index: 'pdfs', type: 'pdf', id: 'my-index-id',
// client.create({index: 'pdfs', type: 'pdf', id: 'my-index-id',
// body: {description: 'Test pdf indexing'}
// })
// .then(function () {console.log("Index created");})
@ -63,4 +59,4 @@ client.ingest.putPipeline({
// client.indices.putMapping({index:"pdfs", type:"pdf", body:body})
// .then((response) => {addPipeline()})
// .catch((error) => {console.log("putMapping error: " + error)})
// .catch((error) => {console.log("putMapping error: " + error)})