Skip to content

Latest commit

 

History

History
40 lines (35 loc) · 1006 Bytes

File metadata and controls

40 lines (35 loc) · 1006 Bytes

MongoDB Backups Manager

Important

This repository is under active development

MongoDB Backups Manager (shortly MBM) is a simple tool that allows you to create backups of your MongoDB database.

Installation

Important

Real installation instructions will be provided on v1.0.0 release.

Ubuntu/Debian

sudo apt install mbm -y

Fedora

sudo dnf install mbm -y

Development setup

First, you'll need to install the Rust Toolchain:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Then, clone the repo and build the project:

git clone https://github.com/DiscordAnalytics/mongo-backups-manager
cd mongo-backups-manager
cargo build --bin mbm

To run the project

cargo run --bin mbm

Read CODE_OF_CONDUCT.md and CONTRIBUTING.md, create a branch and start coding 😎

git branch feat/super-cool-feature
git checkout feat/super-cool-feature