mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 19:38:46 +00:00
5ce8370a63
Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
61 lines
2.7 KiB
TypeScript
61 lines
2.7 KiB
TypeScript
//
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
//
|
|
// 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 { addLocation } from '@anticrm/platform'
|
|
|
|
import login, { loginId } from '@anticrm/login'
|
|
import { clientId } from '@anticrm/client'
|
|
import { workbenchId } from '@anticrm/workbench'
|
|
import { viewId } from '@anticrm/view'
|
|
import { taskId } from '@anticrm/task'
|
|
import { contactId } from '@anticrm/contact'
|
|
import { chunterId } from '@anticrm/chunter'
|
|
import { recruitId } from '@anticrm/recruit'
|
|
|
|
import { serverChunterId } from '@anticrm/server-chunter'
|
|
|
|
import '@anticrm/login-assets'
|
|
import '@anticrm/task-assets'
|
|
import '@anticrm/view-assets'
|
|
import '@anticrm/chunter-assets'
|
|
import '@anticrm/recruit-assets'
|
|
|
|
import { setMetadata } from '@anticrm/platform'
|
|
|
|
export function configurePlatform() {
|
|
|
|
setMetadata(login.metadata.AccountsUrl, process.env.ACCOUNTS_URL)
|
|
setMetadata(login.metadata.UploadUrl, process.env.UPLOAD_URL)
|
|
setMetadata(login.metadata.OverrideLoginToken, process.env.LOGIN_TOKEN)
|
|
setMetadata(login.metadata.OverrideEndpoint, process.env.LOGIN_ENDPOINT)
|
|
|
|
if (process.env.CLIENT_TYPE === 'dev') {
|
|
addLocation(clientId, () => import(/* webpackChunkName: "client-dev" */ '@anticrm/dev-client-resources'))
|
|
addLocation(serverChunterId, () => import(/* webpackChunkName: "server-chunter" */ '@anticrm/dev-server-chunter-resources'))
|
|
} else {
|
|
addLocation(clientId, () => import(/* webpackChunkName: "client" */ '@anticrm/client-resources'))
|
|
}
|
|
|
|
addLocation(loginId, () => import(/* webpackChunkName: "login" */ '@anticrm/login-resources'))
|
|
addLocation(workbenchId, () => import(/* webpackChunkName: "workbench" */ '@anticrm/workbench-resources'))
|
|
addLocation(viewId, () => import(/* webpackChunkName: "view" */ '@anticrm/view-resources'))
|
|
addLocation(taskId, () => import(/* webpackChunkName: "task" */ '@anticrm/task-resources'))
|
|
addLocation(contactId, () => import(/* webpackChunkName: "contact" */ '@anticrm/contact-resources'))
|
|
addLocation(chunterId, () => import(/* webpackChunkName: "chunter" */ '@anticrm/chunter-resources'))
|
|
addLocation(recruitId, () => import(/* webpackChunkName: "recruit" */ '@anticrm/recruit-resources'))
|
|
|
|
|
|
}
|