Skip to content

Commit 98563f9

Browse files
committed
Merge branch 'main' into fix-broken-link
2 parents 1f0f943 + 6f9fb57 commit 98563f9

File tree

5 files changed

+32
-2
lines changed

5 files changed

+32
-2
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# These owners will be the default owners for everything in
2+
# the repo. Unless a later match takes precedence,
3+
# @global-owner1 and @global-owner2 will be requested for
4+
# review when someone opens a pull request.
5+
* @dfreniche @mrlynn @nestor-daza-mdb @sis0k0

.husky/pre-push

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm run build

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![.github/workflows/deploy.yml](https://github.com/mongodb-developer/relational-migrator-lab/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/mongodb-developer/relational-migrator-lab/actions/workflows/deploy.yml)
2+
13
# Developer Days Relational Migrator Lab
24

35
This is the Relational Migrator Lab used during Developer Days that covers using the Relational Migrator to import a PostgreSQL Database into MongoDB.

package-lock.json

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"clear": "docusaurus clear",
1212
"serve": "docusaurus serve",
1313
"write-translations": "docusaurus write-translations",
14-
"write-heading-ids": "docusaurus write-heading-ids"
14+
"write-heading-ids": "docusaurus write-heading-ids",
15+
"prepare": "husky"
1516
},
1617
"dependencies": {
1718
"@docusaurus/core": "3.7.0",
@@ -42,5 +43,8 @@
4243
},
4344
"engines": {
4445
"node": ">=20.0"
46+
},
47+
"devDependencies": {
48+
"husky": "^9.1.7"
4549
}
46-
}
50+
}

0 commit comments

Comments
 (0)