skill-assessment-app/start-dev.sh
2016-09-01 15:00:04 -05:00

29 lines
818 B
Bash
Executable File

#!/bin/bash
if [ -d '/usr/app' ]; then
if [ ! -f 'config/application.yml' ]; then
echo ''
echo -e "\E[1;31m###################################"
echo "Missing application.yml"
echo -e "\E[1;32m cp config/application.yml.sample config/application.yml"
tput sgr0
echo "edit and update proper values"
echo ''
else
if [ ! -f '/root/.container-setup' ]; then
bundle
npm install
bower install --allow-root
rails db:setup
rails db:migrate
rails db:fixtures:load
touch /root/.container-setup
fi
tmux new-session -d -s 'rails-dev' 'rails s -b 0.0.0.0'
tmux split-window -p 15 -v
tmux split-window -p 85 -v 'bundle exec guard start --wait-for-delay 1.5'
tmux attach -t rails-dev
fi
else
echo "Are you in docker container?"
fi