darrrr/script/bootstrap

15 строки
237 B
Plaintext
Исходник Обычный вид История

2017-04-14 19:58:44 +03:00
#!/bin/bash
set -e
bundle install -j 16 --without production
if [ "$DAR_ENV" != "ci" ]; then
brew install phantomjs
fi
. script/setup
bundle exec rake db:create
bundle exec rake db:migrate
RACK_ENV=test bundle exec rake db:migrate