Created
March 9, 2015 17:01
-
-
Save Rahix/57d26e93230446dc41ed to your computer and use it in GitHub Desktop.
bootstrap.sh
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
#!/usr/bin/env bash | |
# Initial apt-get update | |
echo "Updating apt-get..." | |
sudo apt-get update > /dev/null | |
echo "Updating done." | |
echo "Installing apache2, g++, curl, libssl-dev, apache2-utils, git-core..." | |
sudo apt-get install apache2 | |
sudo apt-get install g++ curl libssl-dev apache2-utils | |
sudo apt-get install git-core | |
echo "Installing node..." | |
git clone git://github.com/ry/node.git node_install | |
cd node && ./configure && make && sudo make install | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment