Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telkomdev/mlongo
Command Line tool for utilize MongoDB
https://github.com/telkomdev/mlongo
cli cli-app go golang mongodb
Last synced: about 5 hours ago
JSON representation
Command Line tool for utilize MongoDB
- Host: GitHub
- URL: https://github.com/telkomdev/mlongo
- Owner: telkomdev
- Created: 2020-03-05T04:29:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T04:26:57.000Z (over 3 years ago)
- Last Synced: 2023-03-04T15:52:54.396Z (over 1 year ago)
- Topics: cli, cli-app, go, golang, mongodb
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mlongo
MongoDB Command Line Utility.
Current features
- (Manage MongoDB Indexes with easy) With Mlongo, you can `create`, `show indexes`, and `drop index` with simple command line program.
### Usage
Build: this command will produce a binary file insde `bin` folder.
```shell
$ git clone https://github.com/telkomdev/mlongo.git
$ cd mlongo/
$ make build
```
Export `bin` folder from your environment file. Eg: `.bash_profile` or `.profile` file. So `mlongo` will available in all place.```shell
$ vi ~/.bash_profile
```Add this line (Adjust with yours).
```
export MLONGO_HOME=/Users/wuriyanto/Documents/mlongo
export PATH=$PATH:$MLONGO_HOME/bin
``````shell
$ source ~/.bash_profile
```Show available options
```shell
$ mlongo -h
```