Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kirang89/devbox
Python development box built with the beauty of Vagrant and the power of Chef
https://github.com/kirang89/devbox
Last synced: 7 days ago
JSON representation
Python development box built with the beauty of Vagrant and the power of Chef
- Host: GitHub
- URL: https://github.com/kirang89/devbox
- Owner: kirang89
- Created: 2013-10-10T22:41:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-10T22:42:26.000Z (about 11 years ago)
- Last Synced: 2024-04-16T18:23:07.658Z (7 months ago)
- Language: Ruby
- Size: 152 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#devbox
devbox is my development environment/setup on the cloud. It is a virtual machine running Ubuntu 12.04 containing all the necessary packages installed along with it. This helps me to boot up a quick development box for myself in local/cloud when the unexpected happens.
devbox is built using [Vagrant](vagrantup.com) and [Chef-Solo](http://docs.vagrantup.com/v2/provisioning/chef_solo.html).
##Prerequisites
* Install ruby and other packages:
```
curl -L https://get.rvm.io | bash -s stable --ruby
rvm --default use 1.9.3
```* Next, install Vagrant:
```
gem install vagrant
```* Install [Virtualbox](https://www.virtualbox.org/) (Vagrant can be configured with other [providers](http://docs.vagrantup.com/v2/getting-started/providers.html) as well.)
##Running
* Load the virtual machine using ```vagrant up```
To start using the new VM, you'll need to ssh into it using ```vagrant ssh```
Let the coding begin !