# ModderBaas ModderBaas is a Rust library to interact with installed Minetest objects (worlds, games, mods), and a accompanying CLI application to manage Minetest mods on headless installations (such as `minetest-server` on Debian). ## Building The build process is done through `cargo`: ``` cargo build --release ``` The binary will reside in `target/release/`. Library documentation can be built through ``` cargo doc -p modderbaas ``` Note that the crate is split into a workspace, running `cargo doc` without `-p` will give you the wrong documentation! ## Usage See `modderbaas help`. ## License Copyright (C) 2021 Daniel Schadt This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see .