2020-10-23 17:59:08 +03:00
|
|
|
#!/bin/bash -e -o pipefail
|
2020-09-10 14:34:08 +03:00
|
|
|
|
|
|
|
|
# MongoDB object-value database
|
|
|
|
|
# installs last version of MongoDB Community Edition
|
|
|
|
|
# https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/v
|
|
|
|
|
|
|
|
|
|
echo "Installing mongodb..."
|
|
|
|
|
|
|
|
|
|
brew tap mongodb/brew
|
|
|
|
|
brew install mongodb-community
|