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.

fix: lowercase site name in deploy to match rkey format

niri e33b8a92 be3e2088

+1 -1
+1 -1
cli/commands/deploy.ts
··· 477 477 478 478 export async function deploy(agent: Agent, did: string, options: DeployOptions): Promise<{ uri: string; url: string }> { 479 479 const siteDir = options.path 480 - const siteName = options.site || basename(siteDir) 480 + const siteName = (options.site || basename(siteDir)).toLowerCase() 481 481 482 482 // Validate site name (AT Protocol rkey format) 483 483 if (!/^[a-zA-Z0-9._~:-]{1,512}$/.test(siteName)) {