2016-07-27 11:17:50 -05:00
|
|
|
#!/bin/bash
|
2016-07-26 13:50:35 -05:00
|
|
|
if [ -d '/usr/app' ]; then
|
|
|
|
cd /usr/app
|
|
|
|
bundle
|
2016-07-26 10:38:00 -05:00
|
|
|
|
2016-07-26 13:50:35 -05:00
|
|
|
service mysql start
|
|
|
|
rails db:setup
|
|
|
|
rails db:migrate
|
|
|
|
rails db:fixtures:load
|
2016-07-26 10:38:00 -05:00
|
|
|
|
2016-07-26 13:50:35 -05:00
|
|
|
tmux new-session -d -s 'rails-dev' 'rails s -b 0.0.0.0'
|
|
|
|
tmux split-window -p 85 -v 'bundle exec guard'
|
|
|
|
tmux split-window -p 20 -v
|
|
|
|
tmux attach -t rails-dev
|
|
|
|
else
|
|
|
|
echo "Are you in docker container?"
|
|
|
|
fi
|