Sha256: f6bb136987572782ef2a024f3f390f0d4e5683782d4269d7f63e06428e02ab28
Contents?: true
Size: 707 Bytes
Versions: 5
Compression:
Stored size: 707 Bytes
Contents
#!/bin/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 # Install JavaScript dependencies bin/yarn # Set up database and add any development seed data bin/rails dev:prime if [ ! -d .git/safe ] && echo $PATH | grep .git/safe > /dev/null; then echo "-----------------------------------------------------------------------" echo echo "-> When you trust this repo, remember to run: mkdir -p .git/safe" echo fi # Only if this isn't CI # if [ -z "$CI" ]; then # fi
Version data entries
5 entries across 5 versions & 1 rubygems