A couple of Bluesky feeds focused around PDSes

Add basic ping server to ingest

Primarily for uptime tracking.

Changed files
+7 -1
+1 -1
deno.json
··· 11 11 }, 12 12 "tasks": { 13 13 "start-feedgen": "deno serve --no-prompt --env-file --allow-env --allow-ffi --allow-read --port=4000 feedgen.ts", 14 - "start-ingest": "deno run --no-prompt --env-file --allow-net --allow-env --allow-ffi --allow-read ingest.ts" 14 + "start-ingest": "deno serve --no-prompt --env-file --allow-net --allow-env --allow-ffi --allow-read --port=4001 ingest.ts" 15 15 } 16 16 }
+6
ingest.ts
··· 158 158 }); 159 159 160 160 jetstream.start(); 161 + 162 + export default { 163 + fetch() { 164 + return new Response("Pong!"); 165 + } 166 + } satisfies Deno.ServeDefaultExport;