From 4234a7848325b5f2afcb9050d40d07019bdb3dd7 Mon Sep 17 00:00:00 2001 From: Nikita Melnikov Date: Sun, 2 Oct 2022 15:18:29 +0800 Subject: [PATCH] add readme and gitignore --- bin/db-converter/.gitignore | 2 ++ bin/db-converter/README.md | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 bin/db-converter/.gitignore create mode 100644 bin/db-converter/README.md diff --git a/bin/db-converter/.gitignore b/bin/db-converter/.gitignore new file mode 100644 index 0000000..4ff9f82 --- /dev/null +++ b/bin/db-converter/.gitignore @@ -0,0 +1,2 @@ +.yarn/unplugged +.yarn/build-state.yml diff --git a/bin/db-converter/README.md b/bin/db-converter/README.md new file mode 100644 index 0000000..af6591e --- /dev/null +++ b/bin/db-converter/README.md @@ -0,0 +1,10 @@ +# db-converter + +Converts a database from local to MongoDB. +It can be useful for migrating from a local database to MongoDB. + +## Usage + +```bash +node index.js --db-path .db --mongodb-url mongodb://localhost:27017 +```