The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bssh 535 B

12345678910111213141516171819
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. # Wrap ssh with options to use port 1202, the standard Bubble SSH port.
  6. #
  7. # Environment variables:
  8. #
  9. # BUBBLE_SSH_PORT : If set, this port will be used instead of 1202
  10. #
  11. SCRIPT="${0}"
  12. SCRIPT_DIR="$(cd "$(dirname "${SCRIPT}")" && pwd)"
  13. . "${SCRIPT_DIR}"/bubble_common
  14. if [[ -z "${BUBBLE_SSH_PORT}" ]] ; then
  15. BUBBLE_SSH_PORT="1202"
  16. fi
  17. ssh -p ${BUBBLE_SSH_PORT} "${@}"