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

4 роки тому
4 роки тому
4 роки тому
4 роки тому
1234567891011121314
  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. VCURL=${THISDIR}/vcurl
  7. SNAPSHOT_FILTER=${1}
  8. if [[ -z "${SNAPSHOT_FILTER}" ]] ; then
  9. ${VCURL} snapshot/list | jq .
  10. else
  11. ${VCURL} snapshot/list | jq -r '.[].description' | grep "${SNAPSHOT_FILTER}"
  12. fi