A community based topic aggregation platform built on atproto
1#!/bin/bash 2# Reset the test database by removing all data 3 4echo "WARNING: This will delete all test database data!" 5echo "Press Ctrl+C to cancel, or Enter to continue..." 6read 7 8echo "Stopping test database..." 9docker-compose -f docker-compose.yml down 10 11echo "Removing test data volume..." 12rm -rf ~/Code/Coves/test_db_data 13 14echo "Starting fresh test database..." 15./start-test-db.sh