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
# Use this shell provisioner in Vagrant to set up a minimalist environment for rails app | |
# You can add further customization to install postgres/mysql db | |
# Look up the steps at: https://gorails.com/setup/ubuntu/14.04 | |
# enable console colors | |
sed -i '1iforce_color_prompt=yes' ~/.bashrc | |
# Install build essentials | |
sudo apt-get -y update | |
sudo apt-get install -y git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev |