Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/micmro/vagrant-mean

Vagrant box for MEAN Stack
https://github.com/micmro/vagrant-mean

mean-stack mongodb nodejs ubuntu vagrant

Last synced: about 2 months ago
JSON representation

Vagrant box for MEAN Stack

Awesome Lists containing this project

README

        

MEAN Stack Vagrant File
=========

Sets up a trusty64 Ubuntu box with the latest node.js, MongoDB, grunt and bower

Follow installation guide on http://docs.vagrantup.com/v2/installation/index.html to install Vagrant and VirtualBox

Control Vagrant
===================

###### Start box
```Shell
vagrant up
```

###### SSH into box
```Shell
vagrant ssh
```

###### Tear down box
```Shell
vagrant destroy
```

More documentation on http://www.vagrantup.com/

Control Mongo
===================

###### Start MongoDB
```Shell
sudo service mongodb start
```

###### Stop MongoDB
```Shell
sudo service mongodb stop
```

###### Restart MongoDB
```Shell
sudo service mongodb restart
```