this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

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

update readme

pomdtr 54344e5d f995da7a

+3 -2
+3 -2
README.md
··· 6 6 7 7 ## Example 8 8 9 - Smallweb makes creating a new website as simple as running `mkdir` and creating a `main.ts` file. 10 - 11 9 Let's say I want to self-host my own drawing app. 12 10 13 11 ```bash 12 + # the app subdomain will be draw.<your-domain> 14 13 mkdir -p ~/smallweb/draw 14 + 15 + # Smallweb apps can be contained in a single file 15 16 cat <<EOF > ~/smallweb/draw/main.ts 16 17 import { Excalidraw } from "jsr:@smallweb/excalidraw@0.9.1"; 17 18