1
0
mirror of https://github.com/jcwimer/railsVagrant synced 2026-03-25 02:44:44 +00:00

Initial commit

This commit is contained in:
2015-04-20 15:22:41 -04:00
parent d392f9ded2
commit 9006e9da70
6 changed files with 42 additions and 2 deletions

10
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,10 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "public_network"
config.vm.network "private_network", ip: "192.168.254.2"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
v.name = "railsdev"
end
end