mirror of
https://github.com/michelleDeko/scalelite-run.git
synced 2025-12-16 22:32:10 +01:00
23 lines
616 B
Bash
Executable File
23 lines
616 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
|
|
servers="$(RAILS_ENV=$RAILS_ENV bundle exec rake servers 2>&1)"
|
|
echo $servers
|
|
|
|
if [ "$(echo "$servers" | cut -c0-2)" == "No" ]; then
|
|
echo ">>> Add test-install as the default server"
|
|
bundle exec rake servers:add["https://test-install.blindsidenetworks.com/bigbluebutton/api","8cd8ef52e8e101574e400365b55e11a6"]
|
|
bundle exec rake servers
|
|
bundle exec rake status
|
|
echo ">>> Server must be enabled from the console"
|
|
else
|
|
echo ">>> Do nothing"
|
|
fi
|
|
|
|
|
|
exec tini -- bundle exec puma -C config/puma.rb "$@"
|
|
#tail -f /dev/null
|
|
#bundle exec puma -C config/puma.rb
|
|
#bundle exec rails s -b 0.0.0.0 -p 3000
|