Skip to content

Instantly share code, notes, and snippets.

@userscape-it
userscape-it / basic_vagrant.sh
Created January 25, 2014 20:08
Basic Vagrant install
# Install Vagrant and Virtualbox
# Create new project directory
mkdir -p ~/Sites/newproject # Create new project directory
mk ~/Sites/newproject # Go into your new project directory
# Setup Vagrant
vagrant init
# Edit vagrant file box and box url to install Ubuntu, just like https://gist.github.com/fideloper/dab171a2aa646e86b782#file-vagrantfile-L6-L8
# Edit Vagrantfile to create a static IP address, just like https://gist.github.com/fideloper/dab171a2aa646e86b782#file-vagrantfile-L10