Created
December 30, 2014 00:03
-
-
Save danhper/379af4df5af189c9e590 to your computer and use it in GitHub Desktop.
Vagrant file for i18next clean run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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