A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
98
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove obsolete backup script for Xata

-9
-9
tools/backup-xata.sh
··· 1 - #!/usr/bin/env bash 2 - set -euo pipefail 3 - 4 - # exit if XATA_POSTGRES_URL is not set 5 - : "${XATA_POSTGRES_URL:?Need to set XATA_POSTGRES_URL non-empty}" 6 - 7 - BACKUP_NAME="xata-backup-$(date +%Y%m%d-%H%M%S).dump" 8 - 9 - pg_dump $XATA_POSTGRES_URL --no-owner --no-acl -Fc | pv -pteba > "$BACKUP_NAME"