Sha256: eea8c9f39c9a629750d4b522717130f491b27fc2fad9e7237a7020696e73a2f3
Contents?: true
Size: 562 Bytes
Versions: 5
Compression:
Stored size: 562 Bytes
Contents
#!/bin/sh # Set up Rails app. Run this script immediately after cloning the codebase. # https://la-guia.platan.us/code/rails.html#getting-started # 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 install # Set up database bin/rails db:setup # Add binstubs to PATH via export PATH=".git/safe/../../bin:$PATH" in ~/.zshenv mkdir -p .git/safe <% if selected?(:heroku) -%> # Setup heroku remotes bin/setup_heroku <% end-%>
Version data entries
5 entries across 5 versions & 1 rubygems