Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 839 Bytes

README.md

File metadata and controls

35 lines (19 loc) · 839 Bytes

ProVagrant

Provision a development environment with Vagrant.

Before doing anything, please install Vagrant and VirtualBox

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