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

misc fixes and improvements

- CLI: only skip .git directory instead of all dotfiles
- Hosting service: add logging for PDS record verification
- Hosting service: remove watch flag from dev script

Changed files
+4 -3
cli
src
hosting-service
+2 -2
cli/src/main.rs
··· 301 301 .ok_or_else(|| miette::miette!("Invalid filename: {:?}", name))? 302 302 .to_string(); 303 303 304 - // Skip hidden files 305 - if name_str.starts_with('.') { 304 + // Skip .git directories 305 + if name_str == ".git" { 306 306 continue; 307 307 } 308 308
+1 -1
hosting-service/package.json
··· 3 3 "version": "1.0.0", 4 4 "type": "module", 5 5 "scripts": { 6 - "dev": "tsx --env-file=.env watch src/index.ts", 6 + "dev": "tsx --env-file=.env src/index.ts", 7 7 "build": "tsc", 8 8 "start": "tsx src/index.ts", 9 9 "backfill": "tsx src/index.ts --backfill"
+1
hosting-service/src/lib/firehose.ts
··· 148 148 this.log('Resolved PDS', { did, pdsEndpoint }) 149 149 150 150 // Verify record exists on PDS and fetch its CID 151 + this.log('Verifying record on PDS', { did, site }) 151 152 let verifiedCid: string 152 153 try { 153 154 const result = await fetchSiteRecord(did, site)