curl https://install.meteor.com/ | sh)
npm install
npm start
The app (home or admin) needs to be running in one session. Open a new terminal window (in the same app folder, home or admin) and type:
meteor mongo
This will start a shell prompt where you can run commands like:
show collections
: to print a list of all collections (equivalent to tables in a relational db) on the db.db.<collection_name>.find()
: to see all items in the collection.- More commands in the mongoDB shell reference
sh deploy.sh