diff --git a/dev/prod/src/platform.ts b/dev/prod/src/platform.ts index 9137bad74d..7468a076f0 100644 --- a/dev/prod/src/platform.ts +++ b/dev/prod/src/platform.ts @@ -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')) - - } diff --git a/server/elastic/src/__init.ts b/server/elastic/src/__init.ts index dfff87370b..3aa6fae6cd 100644 --- a/server/elastic/src/__init.ts +++ b/server/elastic/src/__init.ts @@ -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)}) \ No newline at end of file +// .catch((error) => {console.log("putMapping error: " + error)})