https://github.com/gcollazo/mongodbapp
The easiest way to get started with MongoDB on the Mac
https://github.com/gcollazo/mongodbapp
mongodb swift
Last synced: 4 days ago
JSON representation
The easiest way to get started with MongoDB on the Mac
- Host: GitHub
- URL: https://github.com/gcollazo/mongodbapp
- Owner: gcollazo
- License: mit
- Created: 2015-01-16T21:41:10.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-02-24T21:01:40.000Z (about 2 months ago)
- Last Synced: 2025-04-11T23:18:27.459Z (4 days ago)
- Topics: mongodb, swift
- Language: Objective-C
- Homepage: http://gcollazo.github.io/mongodbapp
- Size: 64.5 MB
- Stars: 527
- Watchers: 12
- Forks: 39
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- open-source-mac-os-apps - mongoDB.app - The easiest way to get started with mongoDB on the Mac. ![swift_icon] (Applications / Database)
- awesome-swift-macos-apps - mongoDB.app - The easiest way to get started with mongoDB on the Mac. (Database)
- awesome-swift-macos-apps - mongoDB.app - The easiest way to get started with mongoDB on the Mac. (Database)
- open-source-mac-os-apps - mongoDB.app - The easiest way to get started with mongoDB on the Mac. </summary><p><b>Languages:</b> ![swift_icon] <br><b>Screenshots:</b><br><img src='https://gcollazo.github.io/mongodbapp/assets/img/screenshot.png' width='400' loading='lazy'/><br></p></details> (Applications / 🗄️ Database (18))
README
# mongoDB.app
### The easiest way to get started with mongoDB on the Mac.
_Just download, drag to the applications folder, and double-click._

### [Download](http://gcollazo.github.io/mongodbapp)
---
### Version numbers
Version numbers of this project (mongoDB.app) try to communicate the included version of the included mongoDB binaries bundled with each release.
The version number also includes a build number which is used to indicate the current version of mongoDB.app and it's independent from the bundled mongoDB's version.
### Adding mongo binaries to your path
If you need to add the mongoDB binaries to your path you can do so by adding the following to your `~/.bash_profile`.
```bash
# Add mongoDB.app binaries to path
export PATH="/Applications/MongoDB.app/Contents/Resources/Vendor/mongodb/bin:$PATH"
```Or using the `path_helper` alternative:
```bash
sudo mkdir -p /etc/paths.d &&
echo /Applications/MongoDB.app/Contents/Resources/Vendor/mongodb/bin | sudo tee /etc/paths.d/mongodbapp
```### Installing with Homebrew Cask
You can also install MongoDB.app with [Homebrew Cask](http://caskroom.io/).
```bash
$ brew cask install gcollazo-mongodb
```### Similar projects
* [Redis.app](https://jpadilla.github.io/redisapp/)
* [RabbitMQ.app](https://jpadilla.github.io/rabbitmqapp/)