The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

17 rader
438 B

  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} "${@}"