move over configurations from xos repo

Change-Id: I66583bdaea582986d8f16a29066a79c6687b97fb
diff --git a/frontend/Vagrantfile b/frontend/Vagrantfile
new file mode 100644
index 0000000..83d6d84
--- /dev/null
+++ b/frontend/Vagrantfile
@@ -0,0 +1,8 @@
+Vagrant.configure("2") do |config|
+  config.vm.box = "ubuntu/trusty64"
+
+  config.vm.network "private_network", ip: "192.168.46.100"
+	config.vm.synced_folder "../../../", "/opt/xos"
+  config.vm.provision "shell",
+	inline: "cd /opt/xos/xos/configurations/frontend && make && echo Vagrant running"
+ end