Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/micmro/vagrant-mean
- Owner: micmro
- License: mit
- Created: 2014-01-27T04:30:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-20T08:06:30.000Z (over 9 years ago)
- Last Synced: 2023-03-23T12:09:03.446Z (almost 2 years ago)
- Topics: mean-stack, mongodb, nodejs, ubuntu, vagrant
- Language: Shell
- Size: 108 KB
- Stars: 12
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```