Changes in / [461a917:0741804] in sasview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Vagrantfile
r601b93d r0657b10 2 2 # vi: set ft=ruby : 3 3 4 # This allows you to build sasview using vagrant 4 # This allows you to build sasview using vagrant 5 5 # for the moment you can build Ubuntu on any platform supported by vagrant 6 6 # (Linux, Mac, Windows) 7 # You will need VirtualBox as well. 7 # You will need VirtualBox as well. 8 8 # Download pages: 9 9 # http://www.vagrantup.com/downloads … … 21 21 # Every Vagrant development environment requires a box. You can search for 22 22 # boxes at https://atlas.hashicorp.com/search. 23 config.vm.box = "ubuntu/ trusty64"23 config.vm.box = "ubuntu/xenial64" 24 24 #config.vm.box = "fedora19" 25 25 #config.vm.box_url = "https://dl.dropboxusercontent.com/u/86066173/fedora-19.box" … … 40 40 end 41 41 # 42 config.vm.synced_folder ".", "/vagrant", disabled: true 43 config.vm.synced_folder ".", "/sasview-docs-test/sasview", disabled: false 44 config.vm.synced_folder "../sasmodels", "/sasview-docs-test/sasmodels", disabled: false 45 42 46 config.vm.provision :shell, :path => "Vagrantprovision.sh" 43 47 end -
Vagrantprovision.sh
r795ea6a2 r0657b10 7 7 pip install bumps comtypes periodictable 8 8 9 cat >> ~ vagrant/.bashrc <<EOF9 cat >> ~/.bashrc <<EOF 10 10 export LANG=en_US.UTF-8 11 11 export LC_ALL=en_US.UTF-8
Note: See TracChangeset
for help on using the changeset viewer.