Sha256: 827896230f0e80656b70209b2c84fddf37aa4e9d4d50b5dd5c63d2cb993e0b91
Contents?: true
Size: 809 Bytes
Versions: 14
Compression:
Stored size: 809 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 # Exit if any subcommand fails set -e # Set up Ruby dependencies via Bundler gem install bundler --conservative bundle check || bundle install # Set up configurable environment variables if [ ! -f config/application.yml ]; then cp config/application.yml.sample config/application.yml fi # Set up database and add any development seed data bundle exec rake db:setup dev:prime # Get mailcatcher up and running gem list -i mailcatcher || gem install mailcatcher --no-ri --no-rdoc nc -z localhost 1025 || mailcatcher # Install foreman gem list -i foreman || gem install foreman --no-ri --no-rdoc # Only if this isn't CI # if [ -z "$CI" ]; then # fi
Version data entries
14 entries across 14 versions & 2 rubygems