···11+# Astro Starter Kit: Minimal
22+33+```sh
44+bun create astro@latest -- --template minimal
55+```
66+77+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
88+99+## 🚀 Project Structure
1010+1111+Inside of your Astro project, you'll see the following folders and files:
1212+1313+```text
1414+/
1515+├── public/
1616+├── src/
1717+│ └── pages/
1818+│ └── index.astro
1919+└── package.json
2020+```
2121+2222+Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
2323+2424+There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
2525+2626+Any static assets, like images, can be placed in the `public/` directory.
2727+2828+## 🧞 Commands
2929+3030+All commands are run from the root of the project, from a terminal:
3131+3232+| Command | Action |
3333+| :------------------------ | :----------------------------------------------- |
3434+| `bun install` | Installs dependencies |
3535+| `bun dev` | Starts local dev server at `localhost:4321` |
3636+| `bun build` | Build your production site to `./dist/` |
3737+| `bun preview` | Preview your build locally, before deploying |
3838+| `bun astro ...` | Run CLI commands like `astro add`, `astro check` |
3939+| `bun astro -- --help` | Get help using the Astro CLI |
4040+4141+## 👀 Want to learn more?
4242+4343+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
···11+---
22+import Layout from '../layouts/Layout.astro';
33+---
44+55+<Layout title="klbr.net">
66+ <img title="by rotgutd on twt" src="/klbr-pets-by-rotgutd-on-twt.gif" />
77+ <pre>
88+hi there~
99+1010+you have reached klbr.net. this host operates
1111+several data endpoints and services. see below.
1212+we hope they will be of help to you ^^;
1313+1414+//make use of/
1515+/did:plc mirror: plc.klbr.net/
1616+/atproto relay: relay.klbr.net/
1717+/atproto spool: spool.klbr.net/
1818+1919+//reach out/
2020+/bsky @klbr.net/
2121+/email 90008@klbr.net/
2222+2323+dig +short TXT klbr.net
2424+ </pre>
2525+</Layout>
+31
src/pages/spool/index.astro
···11+---
22+import Layout from '../../layouts/Layout.astro';
33+---
44+55+<Layout title="spool.klbr.net">
66+ <pre>
77+you are currently downloading the documentation
88+for atspool, a receipt printer interface for the
99+atproto network. it speaks the net.klbr.spool
1010+lexicon and prints data on paper.
1111+1212+//submit a job/
1313+create this record:
1414+{
1515+ "$type": "net.klbr.spool.job",
1616+ "content": {
1717+ "$type": "net.klbr.spool.job.content.text",
1818+ "text": "your message here"
1919+ }
2020+}
2121+the record key should be a TID.
2222+2323+//info/
2424+/there is an allowlist, mention/dm klbr.net on bsky/
2525+/source: tangled.org/ptr.pet/atspool/
2626+ </pre>
2727+ <img title="hi!!" src="/printer.webp" />
2828+ <pre>
2929+this is a physical device. be nice to it.
3030+ </pre>
3131+</Layout>