https://github.com/drewzemke/tongo
A TUI for MongoDB.
https://github.com/drewzemke/tongo
mongo rust tui
Last synced: 3 months ago
JSON representation
A TUI for MongoDB.
- Host: GitHub
- URL: https://github.com/drewzemke/tongo
- Owner: drewzemke
- Created: 2024-06-08T19:38:22.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-22T23:56:00.000Z (8 months ago)
- Last Synced: 2025-02-04T09:49:41.346Z (3 months ago)
- Topics: mongo, rust, tui
- Language: Rust
- Homepage:
- Size: 249 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-starred - drewzemke/tongo - A TUI for MongoDB. (Rust)
- awesome-ratatui - tongo - A TUI for MongoDB. (💻 Apps / ⌨️ Development Tools)
README
# `tongo` -- a TUI for MongoDB
## Installation
### Using `cargo`
Install [Rust and Cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html), then install:
```shell
$ cargo install tongo
```### Using `nix`
Install [Nix](https://nixos.org/), then clone this repo and install:
```shell
$ git clone [email protected]:drewzemke/tongo.git
$ cd tongo
$ nix-build
```Then you can move the created binary somewhere on your path:
```shell
$ cp ./result/bin/tongo /usr/local/bin/tongo
```## Usage
```shell
$ tongo
```Load a connection directly:
```shell
$ tongo --url mongodb://localhost:27017
```If you've previously store a connection, you can load it by name:
```shell
$ tongo --connection local
```