mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-03-03 16:51:28 +01:00
10 lines
309 B
Text
10 lines
309 B
Text
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.box = 'laravel/homestead'
|
||
|
|
||
|
config.vm.network :private_network, ip: "192.168.33.11"
|
||
|
config.vm.synced_folder ".", "/vagrant", type: "nfs"
|
||
|
|
||
|
config.vm.provision "shell", path: "vagrant/install.sh"
|
||
|
|
||
|
config.vm.synced_folder "../pony.fm.files", "/vagrant-files"
|
||
|
end
|