Back to extnerl

This commit is contained in:
koalasat
2025-05-03 18:14:01 +02:00
parent a12e589a0d
commit f419bfc872

View File

@ -1,14 +1,15 @@
#!/bin/sh
filters_federation='{"kinds":[38383, 31986, 1059]}'
timeout_duration="10s"
while IFS= read -r line; do
/app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_federation" --dir both
timeout "$timeout_duration" /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_federation" --dir both
done < /app/federation_urls.txt
filters_external='{"kinds":[38383]}'
while IFS= read -r line; do
/app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_external" --dir both
timeout "$timeout_duration" /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_external" --dir both
done < /app/external_urls.txt