Skip to content

Instantly share code, notes, and snippets.

@skiold
Forked from fideloper/install.sh
Created October 28, 2013 12:47
Show Gist options
  • Save skiold/7196241 to your computer and use it in GitHub Desktop.
Save skiold/7196241 to your computer and use it in GitHub Desktop.
#!/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