Skip to content

Commit 8cb73ff

Browse files
committed
Updated demo server link
Updated the demo server link to the new server at http://demo.geoshape.org
1 parent 36a16b5 commit 8cb73ff

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

Vagrantfile

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2626
config.vm.provision :shell, :path => "scripts/install_rvm.sh", :args => "stable"
2727
config.vm.provision :shell, :path => "scripts/install_ruby.sh", :args => "1.9.3"
2828
unless BERKSHELF
29+
<<<<<<< Updated upstream
2930
config.vm.provision :shell, :path => "scripts/geoshape-install.sh", :args => "vagrant release-1.2"
31+
=======
32+
config.vm.provision :shell, :path => "scripts/geoshape-install.sh", :args => "vagrant master"
33+
>>>>>>> Stashed changes
3034
end
3135
config.vm.provision :shell, :inline => "gem install chef --version 11.10.4 --no-rdoc --no-ri --conservative"
3236

@@ -40,6 +44,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4044
# config.vm.network :forwarded_port, guest: 80, host: 8080
4145

4246
# Create a private network, which allows host-only access to the machine
47+
<<<<<<< Updated upstream
4348
# using a specific IP. If you want to run multiple vms at once, you can change the .100
4449
# running a private network eliminates the chances of conflicting with the network you are connected to.
4550
# this is particularly useful when you want to run the vm on your laptop and endup being on various networks
@@ -48,6 +53,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4853

4954
# Create a public network, obtain it's ip through dhcp and bridge it through host's en0
5055
# config.vm.network :public_network, :bridge => 'en0: Ethernet'
56+
=======
57+
# using a specific IP.
58+
config.vm.network :private_network, ip: "192.168.99.10", netmask: "255.255.255.0"
59+
60+
# Create a public network, obtain it's ip through dhcp and bridge it through host's en0
61+
# config.vm.network :public_network, :bridge => 'en0: Ethernet', ip: "192.168.10.222", netmask: "255.255.255.0"
62+
# config.vm.network :public_network, :bridge => 'en0: Ethernet'
63+
#'en1: Wi-Fi (AirPort)'
64+
>>>>>>> Stashed changes
5165

5266
# The following can be used to specify a static ip through the host's en0. You can use other nework adaptors such as 'en1: Wi-Fi (AirPort)'
5367
# config.vm.network :public_network, :bridge => 'en0: Ethernet', ip: "192.168.10.222", netmask: "255.255.255.255"
@@ -61,6 +75,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
6175
# the path on the guest to mount the folder. And the optional third
6276
# argument is a set of non-required options.
6377
# config.vm.synced_folder "../data", "/vagrant_data"
78+
config.vm.synced_folder "../MapLoom", "/MapLoom"
6479

6580
# Provider-specific configuration so you can fine-tune various
6681
# backing providers for Vagrant. These expose provider-specific options.
@@ -70,7 +85,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
7085
# Don't boot with headless mode
7186
vb.gui = true
7287
# Use VBoxManage to customize the VM. For example to change memory:
73-
vb.customize ["modifyvm", :id, "--memory", "2048"]
88+
vb.customize ["modifyvm", :id, "--memory", "8000"]
7489
vb.customize ["modifyvm", :id, "--cpus", "2"]
7590
end
7691
#

0 commit comments

Comments
 (0)