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.
 
 
 
 

9 righe
235 B

  1. #!/bin/bash
  2. SUBID=${1:?no SUBID provided}
  3. THISDIR=$(cd $(dirname ${0}) && pwd)
  4. VCURL=${THISDIR}/vcurl
  5. echo "Deleting instance: ${SUBID}"
  6. ${VCURL} server/destroy -X POST -d "SUBID=${SUBID}" || echo "Error deleting instance: ${SUBID}"