-
-
Save skiold/7196247 to your computer and use it in GitHub Desktop.
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 | |
echo ">>> Starting Install Script" | |
# Update | |
sudo apt-get update | |
echo ">>> Installing Base Items" | |
# Install base items | |
sudo apt-get install -y git-core vim curl wget build-essential python-software-properties python-dev python-pip | |
# Install package manager and virtualenv | |
sudo pip install --upgrade pip | |
sudo pip install --upgrade virtualenv | |
sudo pip install virtualenvwrapper | |
echo ">>> Configuration" | |
# Git Config | |
curl https://gist.github.com/fideloper/3751524/raw/e576c7b38587d6ab73f47ba901c359496069fc77/.gitconfig > /home/vagrant/.gitconfig | |
sudo chown vagrant:vagrant /home/vagrant/.gitconfig | |
# To Do: | |
# Install Postgresql | |
# Create user without prompt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment