Vagrant is open-source software used to create lightweight and portable virtual development environments. Vagrant works like a "wrapper" for VirtualBox that can create, configure, and destroy virtual machines with the use of its own terminal commands. Vagrant facilitates the setup of environments without any direct interaction with VirtualBox and allows developers to use preferred editors and browsers in their native operating system. This blog describes a typical workflow using Vagrant in a development environment.
New to Github? Learn more about basic Github activities here.
Note: This document is for setting up a virtual environment on a Unix host. If you are using a Windows host, please use these instructions.
- Download and install VirtualBox 4.3.12
- Do not open VirtualBox or create a virtual machine. This will be handled by Vagrant.
- Download and install Vagrant 1.6.4
- Package managers like apt-get and gem install will install an older version of Vagrant so it is required to use the download page.
Fork the xtuple
, fork xtuple-extensions
, and fork xtuple-vagrant
repositories on Github.
Clone your forks of the xtuple
and xtuple-extensions
repositories to a directory on your host machine:
host $ mkdir dev
host $ cd dev
host $ git clone --recursive https://github.com/<your-github-username>/xtuple.git
host $ git clone --recursive https://github.com/<your-github-username>/xtuple-extensions.git
Clone your fork of the xtuple-vagrant
repository in a separate directory adjacent to your development folder:
host $ cd ..
host $ mkdir vagrant
host $ cd vagrant
host $ git clone https://github.com/<your-github-username-here>/xtuple-vagrant.git
host $ cd xtuple-vagrant
Important: If you have previously forked these repositories, please ensure that you update your fork and update your dependencies.
- In the
Vagrantfile
, ensure that thesourceDir
variable matches the location of the cloned xTuple source code:sourceDir = "../../dev"
- This path should be relative to the location of the Vagrantfile
vagrant plugin install vagrant-vbguest
Start the virtual machine*:
host $ vagrant up
Vagrant will automatically run a shell script to install git and the xTuple development environment.
Connect to the virtual machine via ssh:
host $ vagrant ssh
The xTuple source code is synced to the folder ~/dev
Start the datasource:
vagrant $ cd dev/xtuple/node-datasource
vagrant $ node main.js
Launch your local browser and navigate to application using localhost http://localhost:8888
or the static IP Address of the virtual machine http://192.168.33.10:8888
Default username and password to your local application are admin
-
Obtain the xTuple Desktop Client Installer for your platform. To be sure the PostBooks Desktop Client version matches the PostBooks database version you are installing, look at the "About" information in the Mobile client.
-
Run the installer. On the screen where you select an xTuple database, select "I do not need a Free Trial database."
-
Complete the installation and launch the Desktop Client. On the login screen, enter these credentials to connect to your local xTuple server:
- Username:
admin
- Password:
admin
- Server :
192.168.33.10
- Port:
5432
- Database:
demo
Sometimes you need to change the default configuration of your virtual machine. For this reason we've made it easy to change some basic settings of the vagrant VMs.
There is a list of variables at the top of the Vagrantfile
. You can override these settings by creating a file called xtlocal.rb
and placing new variable assignments in this file. For example, if you need to change the amount of memory the VM can use, override the xtVboxMemory
setting:
host $ cat 'xtVboxMemory = "2048"' > xtlocal.rb
One common case is configuring a second or third VM running on a single host. This is easy to do. You must overrride the network address of the VM and the network ports that the host forwards to the VM. To assign these ports manually, change the xtlocal.rb
file to look like this:
xtHostAddr = "192.168.33.11"
xtHostAppPort = 8444
xtHostRestPort = 3001
xtHostWebPort = 8889
You can also use the xtHostOffset
variable:
First get the variables to change:
host $ egrep ^xtHost Vagrantfile > xtlocal.rb
Then edit the resulting file to look something like this:
xtHostOffset = 2
xtHostAddr = "192.168.33.12"
xtHostAppPort = xtGuestAppPort + xtHostOffset
xtHostRestPort = xtGuestRestPort + xtHostOffset
xtHostWebPort = xtGuestWebPort + xtHostOffset
Shutting down, restarting, and destroying your VM: