Sha256: 2f1b4759d9490393607da4577e6e623bf9fd03a67575c0497979ce41ae1ca1a5
Contents?: true
Size: 470 Bytes
Versions: 28
Compression:
Stored size: 470 Bytes
Contents
#!/bin/bash # Everything in this bootstrap script # is idempotent. It is OK to run again # on an existing project if you are # uncertain whether it is set up. git submodule update --init if [ ! -f config/config.rb ] ; then cp config/config.sample.rb config/config.rb ; fi bundle || exit bundle exec rake db:create db:migrate || exit bundle exec rake test echo "If this is the first time you've cloned Houston" echo "You might want to run \`bundle exec rake db:seed\`"
Version data entries
28 entries across 28 versions & 1 rubygems