summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorDaveHodder67 <dave.hodder@focusrite.com>2015-07-01 16:00:05 +0100
committerDaveHodder67 <dave.hodder@focusrite.com>2015-07-01 16:00:05 +0100
commitb9bac4f039aaeb8fee4b2f49bef148818408ef74 (patch)
treee4c2e51b254ce66d0356ff63f6b557e71ebb424e /Vagrantfile
parentd30110407eb706b9ac84d7c5465b95560834d947 (diff)
downloadlaunchpad-polymaker-b9bac4f039aaeb8fee4b2f49bef148818408ef74.tar.gz
launchpad-polymaker-b9bac4f039aaeb8fee4b2f49bef148818408ef74.zip
importing the real code (!)
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile24
1 files changed, 11 insertions, 13 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 19a4ea9..81f83fd 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -21,11 +21,6 @@ Vagrant.configure(2) do |config|
21 21
22 config.vm.provision :shell, path: "bootstrap.sh" 22 config.vm.provision :shell, path: "bootstrap.sh"
23 23
24 # use the desktop!
25 #config.vm.provider :virtualbox do |vb|
26 # vb.gui = true
27 #end
28
29 # Create a forwarded port mapping which allows access to a specific port 24 # Create a forwarded port mapping which allows access to a specific port
30 # within the machine from a port on the host machine. In the example below, 25 # within the machine from a port on the host machine. In the example below,
31 # accessing "localhost:8080" will access port 80 on the guest machine. 26 # accessing "localhost:8080" will access port 80 on the guest machine.
@@ -50,14 +45,17 @@ Vagrant.configure(2) do |config|
50 # backing providers for Vagrant. These expose provider-specific options. 45 # backing providers for Vagrant. These expose provider-specific options.
51 # Example for VirtualBox: 46 # Example for VirtualBox:
52 # 47 #
53 # config.vm.provider "virtualbox" do |vb| 48 config.vm.provider "virtualbox" do |vb|
54 # # Display the VirtualBox GUI when booting the machine 49 # Display the VirtualBox GUI when booting the machine
55 # vb.gui = true 50 vb.gui = true
56 # 51
57 # # Customize the amount of memory on the VM: 52 # Customize the amount of memory on the VM:
58 # vb.memory = "1024" 53 vb.memory = "2048"
59 # end 54
60 # 55 # let’s have something usable for proper development
56 vb.cpus = 2
57 end
58
61 # View the documentation for the provider you are using for more 59 # View the documentation for the provider you are using for more
62 # information on available options. 60 # information on available options.
63 61