-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathstarter.ts
More file actions
158 lines (132 loc) · 4.45 KB
/
starter.ts
File metadata and controls
158 lines (132 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
//
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021, 2024 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 { MeasureContext } from '@hcengineering/core'
import { setMetadata } from '@hcengineering/platform'
import { StorageConfiguration } from '@hcengineering/server-core'
import { buildStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage'
import serverToken from '@hcengineering/server-token'
import { start } from '.'
export function startFront (ctx: MeasureContext, extraConfig?: Record<string, string | undefined>): void {
const SERVER_PORT = parseInt(process.env.SERVER_PORT ?? '8080')
const elasticUrl = process.env.ELASTIC_URL
if (elasticUrl === undefined) {
console.error('please provide elastic url')
process.exit(1)
}
const storageConfig: StorageConfiguration = storageConfigFromEnv()
const storageAdapter = buildStorageFromConfig(storageConfig)
const accountsUrl = process.env.ACCOUNTS_URL
if (accountsUrl === undefined) {
console.error('please provide accounts url')
process.exit(1)
}
const uploadUrl = process.env.UPLOAD_URL
if (uploadUrl === undefined) {
console.error('please provide upload url')
process.exit(1)
}
const gmailUrl = process.env.GMAIL_URL
if (gmailUrl === undefined) {
console.error('please provide gmail url')
process.exit(1)
}
const calendarUrl = process.env.CALENDAR_URL
if (calendarUrl === undefined) {
console.error('please provide calendar service url')
process.exit(1)
}
const telegramUrl = process.env.TELEGRAM_URL
if (telegramUrl === undefined) {
console.error('please provide telegram url')
process.exit(1)
}
const rekoniUrl = process.env.REKONI_URL
if (rekoniUrl === undefined) {
console.error('please provide rekoni url')
process.exit(1)
}
const collaboratorUrl = process.env.COLLABORATOR_URL
if (collaboratorUrl === undefined) {
console.error('please provide collaborator url')
process.exit(1)
}
const collaborator = process.env.COLLABORATOR
const modelVersion = process.env.MODEL_VERSION
if (modelVersion === undefined) {
console.error('please provide model version requirement')
process.exit(1)
}
const version = process.env.VERSION
if (version === undefined) {
console.error('please provide version requirement')
process.exit(1)
}
const serverSecret = process.env.SERVER_SECRET
if (serverSecret === undefined) {
console.log('Please provide server secret')
process.exit(1)
}
let uploadConfig = process.env.UPLOAD_CONFIG
if (uploadConfig === undefined) {
uploadConfig = ''
}
let previewConfig = process.env.PREVIEW_CONFIG
if (previewConfig === undefined) {
// Use universal preview config
previewConfig = `${uploadUrl}/:workspace?file=:blobId&size=:size`
}
let filesUrl = process.env.FILES_URL
if (filesUrl === undefined) {
filesUrl = `${uploadUrl}/:workspace/:filename?file=:blobId&workspace=:workspace`
}
const pushPublicKey = process.env.PUSH_PUBLIC_KEY
const brandingUrl = process.env.BRANDING_URL
setMetadata(serverToken.metadata.Secret, serverSecret)
const disableSignUp = process.env.DISABLE_SIGNUP
const defaultLoginMethod = process.env.DEFAULT_LOGIN_METHOD
const config = {
elasticUrl,
storageAdapter,
accountsUrl,
uploadUrl,
filesUrl,
modelVersion,
version,
gmailUrl,
telegramUrl,
rekoniUrl,
calendarUrl,
collaboratorUrl,
collaborator,
brandingUrl,
previewConfig,
uploadConfig,
pushPublicKey,
disableSignUp,
defaultLoginMethod
}
console.log('Starting Front service with', config)
const shutdown = start(ctx, config, SERVER_PORT, extraConfig)
const close = (): void => {
void storageAdapter.close()
console.trace('Exiting from server')
console.log('Shutdown request accepted')
shutdown()
process.exit(0)
}
process.on('SIGINT', close)
process.on('SIGTERM', close)
}