Skip to content

Commit d98a14d

Browse files
UBERF-9764: Migrate gmail integrations (#8706)
* UBERF-9764: Migrate gmail integrations --------- Signed-off-by: Artem Savchenko <[email protected]>
1 parent 8a0a001 commit d98a14d

File tree

6 files changed

+683
-8
lines changed

6 files changed

+683
-8
lines changed

common/config/rush/pnpm-lock.yaml

+118-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/tool/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
5555
"@types/request": "~2.48.8",
5656
"jest": "^29.7.0",
5757
"ts-jest": "^29.1.1",
58-
"@types/jest": "^29.5.5"
58+
"@types/jest": "^29.5.5",
59+
"mongodb-memory-server": "^10.1.4"
5960
},
6061
"dependencies": {
6162
"@elastic/elasticsearch": "^7.17.14",
@@ -160,6 +161,7 @@
160161
"@hcengineering/collaboration": "^0.6.0",
161162
"@hcengineering/datalake": "^0.6.0",
162163
"@hcengineering/s3": "^0.6.0",
164+
"@hcengineering/kvs-client": "^0.6.0",
163165
"commander": "^8.1.0",
164166
"csv-parse": "~5.1.0",
165167
"email-addresses": "^5.0.0",

dev/tool/src/__start.ts

+9
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,13 @@ export function getAccountDBUrl (): string {
103103
return url
104104
}
105105

106+
export function getKvsUrl (): string {
107+
const url = process.env.KVS_URL
108+
if (url === undefined) {
109+
console.error('please provide KVS_URL')
110+
process.exit(1)
111+
}
112+
return url
113+
}
114+
106115
devTool(prepareTools)

0 commit comments

Comments
 (0)