The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

12 строки
230 B

  1. #!/bin/bash
  2. if [[ -z "${VULTR_API_KEY}" ]] ; then
  3. >&2 echo "VULTR_API_KEY not defined in environment"
  4. exit 1
  5. fi
  6. path=${1:?no path provided}
  7. shift
  8. curl ${@} -s -H "API-Key: ${VULTR_API_KEY}" https://api.vultr.com/v1/${path}