run_rbx_puma.sh 238 B

123456789
  1. #!/bin/bash
  2. fw_depends rvm rbx-2.2.10
  3. sed -i 's| host:.*| host: '"${DBHOST}"'|g' config/database.yml
  4. rvm rbx-2.2.10 do bundle install --gemfile=$TROOT/Gemfile
  5. rvm rbx-2.2.10 do bundle exec puma -b tcp://0.0.0.0:8080 -e production &