mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 11:36:45 +00:00
Change install_node.sh to install npm 3 instead. Default RAM for vagrant box is now 4 GB. (#7478)
This commit is contained in:
parent
36042d42f9
commit
4ad81c4c28
2 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
|
|||
|
||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
config.vm.provider "virtualbox" do |v|
|
||||
v.memory = 768
|
||||
v.memory = 4096
|
||||
v.cpus = 1
|
||||
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
|
||||
end
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ nvm use
|
|||
nvm alias default current
|
||||
|
||||
echo Update npm...
|
||||
npm install -g npm@2
|
||||
npm install -g npm@3
|
||||
|
||||
echo Installing global modules...
|
||||
npm install -g gulp bower grunt-cli mocha
|
||||
|
|
|
|||
Loading…
Reference in a new issue