Compare commits

..

No commits in common. "53836a14a8e3f4a39c506dd3e994981dddf7747d" and "a1db0a7a90a9348976708a7b0159c1ac274a2276" have entirely different histories.

View File

@ -57,17 +57,9 @@ export POSTGRES_HOST=localhost
export POSTGRES_PORT=$DB_LOCAL_PORT export POSTGRES_PORT=$DB_LOCAL_PORT
export POSTGRES_DB=transceiver_db export POSTGRES_DB=transceiver_db
export POSTGRES_USER=tip export POSTGRES_USER=tip
export POSTGRES_PASSWORD=tip_prod_2026
export NODE_ENV=production export NODE_ENV=production
# Load local credentials from ~/.tip/.env (not committed to git).
# Must contain: export POSTGRES_PASSWORD=<value>
if [ -f "$HOME/.tip/.env" ]; then
# shellcheck disable=SC1091
source "$HOME/.tip/.env"
else
log "WARNING: ~/.tip/.env not found — POSTGRES_PASSWORD may be unset"
fi
log "Running fs-com scraper via tsx…" log "Running fs-com scraper via tsx…"
"$NPX" tsx packages/scraper/src/scrapers/fs-com.ts 2>&1 | tee -a "$LOG" "$NPX" tsx packages/scraper/src/scrapers/fs-com.ts 2>&1 | tee -a "$LOG"