skill-assessment-app/start-server.sh

27 lines
721 B
Bash
Raw Normal View History

2016-07-27 11:17:50 -05:00
#!/bin/bash
2016-07-26 13:50:35 -05:00
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
2016-09-01 14:49:13 -05:00
if [ ! -f '/root/.container-setup' ]; then
bundle
npm install
bower install --allow-root
rails db:setup
rails db:migrate
rails db:fixtures:load
2016-09-01 14:49:13 -05:00
touch /root/.container-setup
fi
echo 'Delete ~/.container-setup and re-run startup script to update app.'
rails s -b 0.0.0.0
fi
2016-07-26 13:50:35 -05:00
else
echo "Are you in docker container?"
fi