search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

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

feat: add `just check` recipe to monitor indexing status

shows TAP status, most recent indexed date, and 7-day timeline
useful for verifying indexing is working after TAP restarts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz 96eda720 b362615c

+11
+11
tap/justfile
··· 1 1 # tap instance for leaflet-search 2 2 3 + # check indexing status - shows most recent indexed documents 4 + check: 5 + @echo "=== TAP Status ===" 6 + @fly status --app leaflet-search-tap 2>/dev/null | grep -E "(STATE|started|stopped)" 7 + @echo "" 8 + @echo "=== Recent Indexing Activity ===" 9 + @curl -s https://leaflet-search-backend.fly.dev/api/dashboard | jq -r '"Last indexed: \(.timeline[0].date) (\(.timeline[0].count) docs)\nToday: '$(date +%Y-%m-%d)'\nDocs: \(.documents) | Pubs: \(.publications)"' 10 + @echo "" 11 + @echo "=== Timeline (last 7 days) ===" 12 + @curl -s https://leaflet-search-backend.fly.dev/api/dashboard | jq -r '.timeline[:7][] | "\(.date): \(.count) docs"' 13 + 3 14 deploy: 4 15 fly deploy --app leaflet-search-tap 5 16