The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

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