Skip to content

Vagrant environment for development

John Bachir edited this page Apr 6, 2017 · 2 revisions

Vagrantfile

Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/xenial32"
  config.vm.provision "shell", inline: <<-SHELL
    apt install ruby ruby-dev 
    gem install bundler rake
  SHELL
end

create and sign into box

vagrant up
vagrant ssh

run tests

rake

🎉