mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 05:37:22 +01:00
Updates Vagrantfile with correct symlink configuration option Switches bower/grunt in postinstall script to use the globals Changes phantomjs to an npm package install adds --no-bin-link to npm install
19 lines
655 B
Ruby
19 lines
655 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
|
|
end
|
|
config.vm.box = "thepeopleseason/habitrpg"
|
|
config.ssh.forward_agent = true
|
|
|
|
config.vm.hostname = "habitrpg"
|
|
config.vm.network "forwarded_port", guest: 3000, host: 3000, auto_correct: true
|
|
config.vm.usable_port_range = (3000..3050)
|
|
config.vm.provision :shell, :path => "vagrant.sh"
|
|
end
|