#!/bin/bash
# Starts/Restarts the Rails server as a background task

# save cyrrebt working directory
here=`pwd`

my_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $my_dir/check_app_root

cd $APP_ROOT

# Use -Q or --quiet option to keep the cat off of the furniture
pumactl start

cd $here
