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.

vultr_delete_instance.sh 235 B

12345678
  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}"