Changeset 96032b3 in sasview for Vagrantfile


Ignore:
Timestamp:
Feb 19, 2015 9:03:42 AM (9 years ago)
Author:
Tobias Richter <tobias.richter@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
78bcf3c3, 66f21cd
Parents:
e0a50be
Message:

add some documentation what vagrant is

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Vagrantfile

    ra97c51e r96032b3  
    11# -*- mode: ruby -*- 
    22# vi: set ft=ruby : 
     3 
     4# This allows you to build sasview using vagrant  
     5# for the moment you can build Ubuntu on any platform supported by vagrant 
     6# (Linux, Mac, Windows) 
     7# You will need VirtualBox as well.  
     8# Download pages: 
     9# http://www.vagrantup.com/downloads 
     10# https://www.virtualbox.org/wiki/Downloads 
    311 
    412# All Vagrant configuration is done below. The "2" in Vagrant.configure 
     
    2028  #config.vm.box_url = "https://dl.dropboxusercontent.com/u/15733306/vagrant/fedora-20-netinst-2014_01_05-minimal-puppet-guestadditions.box" 
    2129 
    22   # Disable automatic box update checking. If you disable this, then 
    23   # boxes will only be checked for updates when the user runs 
    24   # `vagrant box outdated`. This is not recommended. 
    25   # config.vm.box_check_update = false 
    26  
    27   # Create a forwarded port mapping which allows access to a specific port 
    28   # within the machine from a port on the host machine. In the example below, 
    29   # accessing "localhost:8080" will access port 80 on the guest machine. 
    30   # config.vm.network "forwarded_port", guest: 80, host: 8080 
    31  
    32   # Create a private network, which allows host-only access to the machine 
    33   # using a specific IP. 
    34   # config.vm.network "private_network", ip: "192.168.33.10" 
    35  
    36   # Create a public network, which generally matched to bridged network. 
    37   # Bridged networks make the machine appear as another physical device on 
    38   # your network. 
    39   # config.vm.network "public_network" 
    40  
    41   # Share an additional folder to the guest VM. The first argument is 
    42   # the path on the host to the actual folder. The second argument is 
    43   # the path on the guest to mount the folder. And the optional third 
    44   # argument is a set of non-required options. 
    45   # config.vm.synced_folder "../data", "/vagrant_data" 
    46  
    4730  # Provider-specific configuration so you can fine-tune various 
    4831  # backing providers for Vagrant. These expose provider-specific options. 
     
    5841  end 
    5942  # 
    60   # View the documentation for the provider you are using for more 
    61   # information on available options. 
    62  
    63   # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies 
    64   # such as FTP and Heroku are also available. See the documentation at 
    65   # https://docs.vagrantup.com/v2/push/atlas.html for more information. 
    66   # config.push.define "atlas" do |push| 
    67   #   push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME" 
    68   # end 
    69  
    70   # Enable provisioning with a shell script. Additional provisioners such as 
    71   # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the 
    72   # documentation for more information about their specific syntax and use. 
    73   # config.vm.provision "shell", inline <<-SHELL 
    74   #   sudo apt-get install apache2 
    75   # SHELL 
    7643  config.vm.provision :shell, :path => "Vagrantprovision.sh" 
    7744end 
Note: See TracChangeset for help on using the changeset viewer.