Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
1
fork

Configure Feed

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

concurrency at 3 to prevent most chances of being rate limited, configurable with UPLOAD_CONCURRENCY

+1 -1
+1 -1
apps/main-app/src/routes/wisp.ts
··· 418 418 } 419 419 420 420 // Use sliding window concurrency for maximum throughput 421 - const CONCURRENCY_LIMIT = 20 // Maximum concurrent uploads 421 + const CONCURRENCY_LIMIT = parseInt(process.env.UPLOAD_CONCURRENCY || '3', 10) 422 422 const uploadedBlobs: Array<{ 423 423 result: FileUploadResult 424 424 filePath: string