選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

start 616B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. servers="$(RAILS_ENV=$RAILS_ENV bundle exec rake servers 2>&1)"
  3. echo $servers
  4. if [ "$(echo "$servers" | cut -c0-2)" == "No" ]; then
  5. echo ">>> Add test-install as the default server"
  6. bundle exec rake servers:add["https://test-install.blindsidenetworks.com/bigbluebutton/api","8cd8ef52e8e101574e400365b55e11a6"]
  7. bundle exec rake servers
  8. bundle exec rake status
  9. echo ">>> Server must be enabled from the console"
  10. else
  11. echo ">>> Do nothing"
  12. fi
  13. exec tini -- bundle exec puma -C config/puma.rb "$@"
  14. #tail -f /dev/null
  15. #bundle exec puma -C config/puma.rb
  16. #bundle exec rails s -b 0.0.0.0 -p 3000