The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

vultr_delete_instance.sh 383 B

12345678910
  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. SUBID=${1:?no SUBID provided}
  6. THISDIR=$(cd $(dirname ${0}) && pwd)
  7. VCURL=${THISDIR}/vcurl
  8. echo "Deleting instance: ${SUBID}"
  9. ${VCURL} server/destroy -X POST -d "SUBID=${SUBID}" || echo "Error deleting instance: ${SUBID}"