From 5c75ac60c55db9be19de58b0bc2de8616df26dbc Mon Sep 17 00:00:00 2001 From: Paulo Tada Date: Fri, 8 Apr 2016 11:41:06 -0300 Subject: [PATCH] Adding a Vagrantfile --- Vagrantfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+), 0 deletions(-) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..cee9ec2 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,25 @@ +#-*- mode: ruby -*- +# vi: set ft=ruby : + +# This will config you local machine +# If you having problem to up check out the README.md +Vagrant.configure(2) do |config| + + config.vm.define "noosfero-dev" + + # This box has already + # - Ruby on Rails 4 + # - NVM with NodeJS v5.9.0 + config.vm.box = "paulohtfs/noosfero-dev" + + # Network configurations + # Check if your host port is available + config.vm.network "forwarded_port", guest: 3000, host: 3000 + config.vm.network "private_network", ip: "10.0.0.15" + + # Change according to you hardware + config.vm.provider "virtualbox" do |vm| + vm.memory = 512; + vm.cpus = 1; + end +end -- libgit2 0.21.2