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
···
.ok_or_else(|| miette::miette!("Invalid filename: {:?}", name))?
.to_string();
-
// Skip hidden files
-
if name_str.starts_with('.') {
+
// Skip .git directories
+
if name_str == ".git" {
continue;
}
+1 -1
hosting-service/package.json
···
"version": "1.0.0",
"type": "module",
"scripts": {
-
"dev": "tsx --env-file=.env watch src/index.ts",
+
"dev": "tsx --env-file=.env src/index.ts",
"build": "tsc",
"start": "tsx src/index.ts",
"backfill": "tsx src/index.ts --backfill"
+1
hosting-service/src/lib/firehose.ts
···
this.log('Resolved PDS', { did, pdsEndpoint })
// Verify record exists on PDS and fetch its CID
+
this.log('Verifying record on PDS', { did, site })
let verifiedCid: string
try {
const result = await fetchSiteRecord(did, site)