The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

15 wiersze
364 B

  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. THISDIR=$(cd $(dirname ${0}) && pwd)
  6. DOCURL=${THISDIR}/docurl
  7. DO_OUTPUT=${1}
  8. if [[ -z "${DO_OUTPUT}" ]] ; then
  9. ${DOCURL} droplets | jq .
  10. else
  11. ${DOCURL} droplets | jq -r .droplets[].${DO_OUTPUT}
  12. fi