File size: 342 Bytes
102dd4f
 
 
 
cf6d08c
102dd4f
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
set -euo pipefail

# Usage: ./scripts/setup_and_seed.sh
# Seeds FALZH info and syncs active trips into Supabase vector tables.
# Ensure you have activated your virtualenv and filled .env before running.

python scripts/seed_info.py
python scripts/sync_trips.py

echo "Done: Supabase vector info seeded and trips synced."