Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.43 KB

INSTALL.vagrant.md

File metadata and controls

42 lines (31 loc) · 1.43 KB

Vagrant

Vagrant is a wrapper around VirtualBox.

It can create a virtual machine on your computer and configure it, so that you can instantly start developing. You need to follow these steps to make it work on your machine:

Now that you have the necessary tools it is time to create and start the virtual machine:

# create and start virtual machine
vagrant up

Once the virtual machine has started it will begin to configure itself with the necessary things to run a SkyLines development server on it. As soon as it is finished you can call vagrant ssh to access the virtual machine from the terminal. The shared folder with the SkyLines code can be found at /vagrant.

Frontend installation

The frontend is based on ember, a nodejs framework. Unfortunately nodejs/npm is quite resource-intensive, so it's recommended to build the frontend on the host machine.

Now you can start and build the frontend with ember:

cd ember
npm install
bower install
node_modules/.bin/ember build