Sha256: 1eefde54dcbb347a3ce6e8daa8568a771edbed4372980045da8709bca3fa675e
Contents?: true
Size: 615 Bytes
Versions: 1
Compression:
Stored size: 615 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 # 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.0.0 | templates/bin_setup |