Sha256: 70a38ab8ba51f70bb120413d87787bd4f29f6c14280ca7a35435a503aabd372b
Contents?: true
Size: 458 Bytes
Versions: 6
Compression:
Stored size: 458 Bytes
Contents
#!/bin/sh # Set up Rails app. Run this script immediately after cloning the codebase. # 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 # Only if this isn't CI # if [ -z "$CI" ]; then # fi
Version data entries
6 entries across 6 versions & 1 rubygems