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.

v0.4.0 binaries

+20 -8
+4 -4
apps/main-app/public/editor/tabs/CLITab.tsx
··· 71 71 </a> 72 72 <div className="text-xs text-muted-foreground"> 73 73 <span className="font-mono"> 74 - SHA-1: 9281454860f2eb07b39b80f7a9cc8e9bdcff491b 74 + SHA-1: 2b5c1d6d0e21f9d764dd66ef869bfcd348e8a111 75 75 </span> 76 76 </div> 77 77 </div> ··· 87 87 </a> 88 88 <div className="text-xs text-muted-foreground"> 89 89 <span className="font-mono"> 90 - SHA-1: d460863150c4c162b7e7e3801a67746da3aaf9d9 90 + SHA-1: 68d4a3831c07d2f32fdde8d3e809af1ab79e804e 91 91 </span> 92 92 </div> 93 93 </div> ··· 103 103 </a> 104 104 <div className="text-xs text-muted-foreground"> 105 105 <span className="font-mono"> 106 - SHA-1: 94968abed20422df826b78c38cb506dd4b1b5885 106 + SHA-1: 86e89f592b0ec53239c082f502cbe7a47ed8bbec 107 107 </span> 108 108 </div> 109 109 </div> ··· 119 119 </a> 120 120 <div className="text-xs text-muted-foreground"> 121 121 <span className="font-mono"> 122 - SHA-1: 45293e47da38b97ef35258a08cb2682eee64a659 122 + SHA-1: 227b735911ad260cff5af3ca3beefa4e1e3956a8 123 123 </span> 124 124 </div> 125 125 </div>
+16 -4
docs/src/content/docs/cli.md
··· 48 48 <h3 style="margin-top: 1.5rem; margin-bottom: 0.5rem;">SHA-1 Checksums</h3> 49 49 50 50 <pre style="font-size: 0.75rem; padding: 1rem;" class="language-bash" tabindex="0"><code class="language-bash"> 51 - 9281454860f2eb07b39b80f7a9cc8e9bdcff491b wisp-cli-aarch64-darwin 51 + 2b5c1d6d0e21f9d764dd66ef869bfcd348e8a111 wisp-cli-aarch64-darwin 52 52 53 - d460863150c4c162b7e7e3801a67746da3aaf9d9 wisp-cli-aarch64-linux 53 + 68d4a3831c07d2f32fdde8d3e809af1ab79e804e wisp-cli-aarch64-linux 54 54 55 - 94968abed20422df826b78c38cb506dd4b1b5885 wisp-cli-x86_64-linux 55 + 86e89f592b0ec53239c082f502cbe7a47ed8bbec wisp-cli-x86_64-linux 56 56 57 - 45293e47da38b97ef35258a08cb2682eee64a659 wisp-cli-x86_64-windows.exe 57 + 227b735911ad260cff5af3ca3beefa4e1e3956a8 wisp-cli-x86_64-windows.exe 58 58 </code></pre> 59 59 60 60 </div> ··· 161 161 wisp-cli serve your-handle.bsky.social \ 162 162 --site my-site \ 163 163 --port 3000 164 + 165 + # Enable SPA mode (serve index.html for all routes) 166 + wisp-cli serve your-handle.bsky.social \ 167 + --site my-site \ 168 + --spa 169 + 170 + # Enable directory listing for paths without index files 171 + wisp-cli serve your-handle.bsky.social \ 172 + --site my-site \ 173 + --directory 164 174 ``` 165 175 166 176 Downloads site, serves it, and watches firehose for live updates! ··· 249 259 -s, --site <SITE> Site name to serve 250 260 -o, --output <OUTPUT> Site files directory [default: .] 251 261 -p, --port <PORT> Port to serve on [default: 8080] 262 + --spa Enable SPA mode (serve index.html for all routes) 263 + --directory Enable directory listing mode for paths without index files 252 264 -h, --help Print help 253 265 ``` 254 266