Sha256: bc41b933275c150a4c6b9b354e6ee86ec999bd905be25fbf339bd249c10f21b1

Contents?: true

Size: 713 Bytes

Versions: 4

Compression:

Stored size: 713 Bytes

Contents

#!/bin/sh

# Set up Rails app. Run this script immediately after cloning the codebase.
# https://github.com/SeasonedSoftware/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

4 entries across 4 versions & 1 rubygems

Version Path
bulldozer-1.6.3 templates/bin_setup
bulldozer-1.6.2 templates/bin_setup
bulldozer-1.6.1 templates/bin_setup
bulldozer-1.6.0 templates/bin_setup