The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 regels
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}"