Sha256: e7908c5cde45ff1d22f8ea9053a2a983fd28a9e94bcc738f4a250706639095c2

Contents?: true

Size: 633 Bytes

Versions: 3

Compression:

Stored size: 633 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

if [ ! -f config/application.yml ]; then
  cp .sample.application.yml config/application.yml
fi

# Set up database and add any development seed data
bin/rake dev:prime

# Add binstubs to PATH via export PATH=".git/safe/../../bin:$PATH" in ~/.zshenv
mkdir -p .git/safe
mkdir -p tmp/pids

# Only if this isn't CI
# if [ -z "$CI" ]; then
# fi

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kratos-1.0.3 templates/bin_setup
kratos-1.0.2 templates/bin_setup
kratos-1.0.1 templates/bin_setup