Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/vutran/provagrant

Provision a development environment with Vagrant.
https://github.com/vutran/provagrant

vagrant virtualbox

Last synced: 1 day ago
JSON representation

Provision a development environment with Vagrant.

Awesome Lists containing this project

README

        

# ProVagrant

Provision a development environment with Vagrant.

# Before doing anything, please install Vagrant and VirtualBox

- [Vagrant](http://www.vagrantup.com/)
- [VirtualBox](https://www.virtualbox.org/)

# Initialize Vagrant

Within the Terminal, create a new project folder and initialize Vagrant:

mkdir MyVagrantProject && cd MyVagrantProject

Initialize a new VagrantFile (precise32)

vagrant init precise32 http://files.vagrantup.com/precise32.box

Within the Terminal, start the Vagrant box:

vagrant up

# Provision the Environment

`setup.sh` will be executed during the the setup of the virtual machine. Please refer to `setup.sh` for more information.

# To-Do

* Extract configuration into separate INI file
* Setup script to create a default virtual host

# Credits

* [Venison](https://github.com/tjstein/venison)