Skip to content

Instantly share code, notes, and snippets.

View IcaroBichir's full-sized avatar
🏠
Working from home

Ícaro M. Bichir IcaroBichir

🏠
Working from home
View GitHub Profile
@IcaroBichir
IcaroBichir / Vagrantfile
Created July 8, 2015 03:31
Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
end