Skip to content

Instantly share code, notes, and snippets.

@danhper
Created December 30, 2014 00:03
Show Gist options
  • Save danhper/379af4df5af189c9e590 to your computer and use it in GitHub Desktop.
Save danhper/379af4df5af189c9e590 to your computer and use it in GitHub Desktop.
Vagrant file for i18next clean run
Vagrant.configure(2) do |config|
config.vm.box = "precise64"
config.vm.provision "shell", inline: <<-SHELL
apt-get install -y curl make g++ git
curl -sL https://deb.nodesource.com/setup | bash -
apt-get install -y nodejs
git clone https://github.com/i18next/i18next-node.git
cd i18next-node && npm install && cd ..
chown -R vagrant:vagrant i18next-node
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment