Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/visemet/mongo-validate
A tool to check for inconsistencies between indexes and their associated collections
https://github.com/visemet/mongo-validate
Last synced: about 1 month ago
JSON representation
A tool to check for inconsistencies between indexes and their associated collections
- Host: GitHub
- URL: https://github.com/visemet/mongo-validate
- Owner: visemet
- License: mit
- Created: 2014-12-11T22:32:41.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-13T17:45:26.000Z (about 10 years ago)
- Last Synced: 2024-10-21T21:39:56.967Z (3 months ago)
- Language: Go
- Homepage:
- Size: 133 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
mongo-validate
==============Checks for any inconsistencies between indexes and their associated
collections.Setup
-----Create a workspace directory for the project, and clone the repo
inside of it. (Assumes `GOPATH` has been set appropriately.)mkdir -p $GOPATH/src/github.com/visemet
cd $GOPATH/src/github.com/visemet
git clone https://github.com/visemet/mongo-validate
cd mongo-validateDownload and install the dependencies for this project:
- mgo.v2: [source][mgo-source] | [documentation][mgo-docs]
```
go get gopkg.in/mgo.v2
```### Build
export GOBIN=bin
go install validate/main/validate.goLicense
-------The library is available under the MIT License. For more information,
see the [license file][license] in the GitHub repository.[license]: LICENSE
[mgo-source]: https://github.com/go-mgo/mgo/tree/v2
[mgo-docs]: https://godoc.org/gopkg.in/mgo.v2