您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021
  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. else
  10. echo ">>> Do nothing"
  11. fi
  12. exec tini -- bundle exec puma -C config/puma.rb "$@"
  13. #tail -f /dev/null
  14. #bundle exec puma -C config/puma.rb
  15. #bundle exec rails s -b 0.0.0.0 -p 3000