Skip to content

Instantly share code, notes, and snippets.

@jfranciscos4
Forked from fideloper/install.sh
Created May 1, 2014 23:06
Show Gist options
  • Save jfranciscos4/d59ffe3221b0a6292eb3 to your computer and use it in GitHub Desktop.
Save jfranciscos4/d59ffe3221b0a6292eb3 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