mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-05 18:34:49 +00:00
f72907c8f6
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
86 lines
4.8 KiB
TypeScript
86 lines
4.8 KiB
TypeScript
//
|
|
// Copyright © 2022 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 { prepareTools as prepareToolsRaw } from '@hcengineering/server-tool'
|
|
|
|
import { type Data, type Tx, type Version } from '@hcengineering/core'
|
|
import { type MinioService } from '@hcengineering/minio'
|
|
import { type MigrateOperation } from '@hcengineering/model'
|
|
import builder, { getModelVersion, migrateOperations } from '@hcengineering/model-all'
|
|
import { devTool } from '.'
|
|
|
|
import { addLocation } from '@hcengineering/platform'
|
|
import { serverActivityId } from '@hcengineering/server-activity'
|
|
import { serverAttachmentId } from '@hcengineering/server-attachment'
|
|
import { serverCalendarId } from '@hcengineering/server-calendar'
|
|
import { serverChunterId } from '@hcengineering/server-chunter'
|
|
import { serverCollaborationId } from '@hcengineering/server-collaboration'
|
|
import { serverContactId } from '@hcengineering/server-contact'
|
|
import { serverDocumentId } from '@hcengineering/server-document'
|
|
import { serverGmailId } from '@hcengineering/server-gmail'
|
|
import { serverGuestId } from '@hcengineering/server-guest'
|
|
import { serverHrId } from '@hcengineering/server-hr'
|
|
import { serverInventoryId } from '@hcengineering/server-inventory'
|
|
import { serverLeadId } from '@hcengineering/server-lead'
|
|
import { serverNotificationId } from '@hcengineering/server-notification'
|
|
import { serverRecruitId } from '@hcengineering/server-recruit'
|
|
import { serverRequestId } from '@hcengineering/server-request'
|
|
import { serverSettingId } from '@hcengineering/server-setting'
|
|
import { serverTagsId } from '@hcengineering/server-tags'
|
|
import { serverTaskId } from '@hcengineering/server-task'
|
|
import { serverTelegramId } from '@hcengineering/server-telegram'
|
|
import { serverTimeId } from '@hcengineering/server-time'
|
|
import { serverTrackerId } from '@hcengineering/server-tracker'
|
|
import { serverViewId } from '@hcengineering/server-view'
|
|
|
|
addLocation(serverActivityId, () => import('@hcengineering/server-activity-resources'))
|
|
addLocation(serverAttachmentId, () => import('@hcengineering/server-attachment-resources'))
|
|
addLocation(serverCollaborationId, () => import('@hcengineering/server-collaboration-resources'))
|
|
addLocation(serverContactId, () => import('@hcengineering/server-contact-resources'))
|
|
addLocation(serverNotificationId, () => import('@hcengineering/server-notification-resources'))
|
|
addLocation(serverChunterId, () => import('@hcengineering/server-chunter-resources'))
|
|
addLocation(serverInventoryId, () => import('@hcengineering/server-inventory-resources'))
|
|
addLocation(serverLeadId, () => import('@hcengineering/server-lead-resources'))
|
|
addLocation(serverRecruitId, () => import('@hcengineering/server-recruit-resources'))
|
|
addLocation(serverSettingId, () => import('@hcengineering/server-setting-resources'))
|
|
addLocation(serverTaskId, () => import('@hcengineering/server-task-resources'))
|
|
addLocation(serverTrackerId, () => import('@hcengineering/server-tracker-resources'))
|
|
addLocation(serverTagsId, () => import('@hcengineering/server-tags-resources'))
|
|
addLocation(serverCalendarId, () => import('@hcengineering/server-calendar-resources'))
|
|
addLocation(serverGmailId, () => import('@hcengineering/server-gmail-resources'))
|
|
addLocation(serverTelegramId, () => import('@hcengineering/server-telegram-resources'))
|
|
addLocation(serverHrId, () => import('@hcengineering/server-hr-resources'))
|
|
addLocation(serverRequestId, () => import('@hcengineering/server-request-resources'))
|
|
addLocation(serverViewId, () => import('@hcengineering/server-view-resources'))
|
|
addLocation(serverDocumentId, () => import('@hcengineering/server-document-resources'))
|
|
addLocation(serverTimeId, () => import('@hcengineering/server-time-resources'))
|
|
addLocation(serverGuestId, () => import('@hcengineering/server-guest-resources'))
|
|
|
|
function prepareTools (): {
|
|
mongodbUri: string
|
|
minio: MinioService
|
|
txes: Tx[]
|
|
version: Data<Version>
|
|
migrateOperations: [string, MigrateOperation][]
|
|
} {
|
|
const enabled = (process.env.MODEL_ENABLED ?? '*').split(',').map((it) => it.trim())
|
|
const disabled = (process.env.MODEL_DISABLED ?? '').split(',').map((it) => it.trim())
|
|
return { ...prepareToolsRaw(builder(enabled, disabled).getTxes()), version: getModelVersion(), migrateOperations }
|
|
}
|
|
|
|
console.log(`tools git_version: ${process.env.GIT_REVISION ?? ''} model_version: ${process.env.MODEL_VERSION ?? ''}`)
|
|
|
|
devTool(prepareTools, '')
|