initial workspace contribution

Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov
2021-08-19 09:36:12 +02:00
parent 5ce8370a63
commit dec3adefeb
14 changed files with 1380 additions and 8 deletions
+36
View File
@@ -0,0 +1,36 @@
//
// 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 { createModel } from '.'
const url = process.env.MONGO_URL
if (url === undefined) {
console.error('please provide mongodb url.')
process.exit(1)
}
const db = process.argv[2]
if (db === undefined) {
console.error('Please specify the database.')
process.exit(1)
}
console.log('creating model...')
createModel(url, db).then(rows => {
console.log(`done, ${rows} rows inserted.`)
}).catch(error => { console.error(error) })
// mongodb+srv://dbUser:ZfVAdSSnw9myvd70@cluster0.fyeho.mongodb.net/?retryWrites=true&w=majority
+35
View File
@@ -0,0 +1,35 @@
//
// 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 { MongoClient, Document } from 'mongodb'
import { DOMAIN_TX } from '@anticrm/core'
import * as txJson from './model.tx.json'
/**
* @public
*/
export async function createModel (url: string, dbName: string): Promise<number> {
const client = new MongoClient(url)
try {
await client.connect()
const db = client.db(dbName)
const result = await db.collection(DOMAIN_TX).insertMany(txJson as Document[])
return result.insertedCount
} finally {
client.close()
}
}
File diff suppressed because it is too large Load Diff