https://github.com/westonplatter/simple-dev-box
simple dev book for NodeJS development
https://github.com/westonplatter/simple-dev-box
Last synced: about 2 months ago
JSON representation
simple dev book for NodeJS development
- Host: GitHub
- URL: https://github.com/westonplatter/simple-dev-box
- Owner: westonplatter
- License: bsd-3-clause
- Created: 2014-01-12T04:40:08.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-18T21:05:37.000Z (over 11 years ago)
- Last Synced: 2024-04-14T20:10:46.132Z (about 1 year ago)
- Language: JavaScript
- Size: 309 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
simple-dev-box
==============
simple dev book for NodeJS development### Install
- __REQUIRED FOR EVERY OPERATING SYSTEM__
- VirtualBox, [download here](https://www.virtualbox.org/wiki/Downloads)
- Vagrant, [download here](http://www.vagrantup.com/downloads.html)- __Linux Ubuntu__
- git```
sudo apt-get install git
```
- ansible```
sudo add-apt-repository ppa:rquillo/ansible
sudo apt-get update
sudo apt-get install ansible
```
- __Mac OSX__ (using Homebrew, [install instructions here](http://brew.sh/))
- git
```
brew install git
```
- ansible
```
brew install ansible
```
### Getting startedClone the reop:
git clone http://github.com/westonplatter/simple-dev-box.git
cd simple-dev-box
vagrant up
Now you can SSH into the Vagrant machine, IE, the SimpleDevBox:vagrant ssh
Check that `git` and `nodejs` were installed (both should return version installed):
git -v
node -v
### Extra stuff
To run the ansible-playbook again:
ansible-playbook \
-i vagrant_ansible_inventory_default \
--private-key=~/.vagrant.d/insecure_private_key \
-u vagrant \
nodejs-single-node.ymlLicense
-------
Copyright (c) 2014 Weston Platter, BSD-3.Author
------
Weston Platter