You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 21, 2026. It is now read-only.
Readme file for local installations -> mongodb server setup is only for ubuntu not for mac
For setup of mongodb for mac the commands are :
brew install mongo
sudo mkdir -p /data/db
whoami
sudo chown <output_of_whoami> /data/db
Open ./bashrc or .zshrc file and copy paste the contents below
export MONGO_PATH=<path_to_mongodb>
export PATH=$PATH:$MONGO_PATH/bin
To run mongod instance :
mongod
Kill all instances of mongod in mac :
mongo admin --eval "db.shutdownServer()”