Sha256: cc54d771f4daf97328a9aeae28fde77ff4960f81d13d4dd0572ee8e1c8275af4
Contents?: true
Size: 536 Bytes
Versions: 1
Compression:
Stored size: 536 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 # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kratos-1.1.0 | templates/bin_setup |