The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213141516
  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. if [[ -z "${BUBBLE_SSH_PORT}" ]] ; then
  12. BUBBLE_SSH_PORT="1202"
  13. fi
  14. ssh -p ${BUBBLE_SSH_PORT} "${@}"