Sha256: bf1ef37f9d47c9c8ce56aec3adfc9e7ac57b03559a8eab4a2ceef6457a07f395
Contents?: true
Size: 599 Bytes
Versions: 8
Compression:
Stored size: 599 Bytes
Contents
#!/usr/bin/env sh # Set up Rails app. Run this script immediately after cloning the codebase. # https://github.com/thoughtbot/guides/tree/master/protocol # Set up Ruby dependencies via Bundler bundle install # Set up the database bundle exec rake db:setup # Set up configurable environment variables if [ ! -f .env ]; then cp .sample.env .env fi # Pick a port for Foreman echo "port: 3000" > .foreman # Set up DNS via Pow # if [ -d ~/.pow ] # then # echo 7000 > ~/.pow/`basename $PWD` # else # echo "Pow not set up but the team uses it for this project. Setup: http://goo.gl/RaDPO" # fi
Version data entries
8 entries across 8 versions & 1 rubygems