Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
1# Starlight Starter Kit: Basics 2 3[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build) 4 5``` 6bun create astro@latest -- --template starlight 7``` 8 9> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! 10 11## 🚀 Project Structure 12 13Inside of your Astro + Starlight project, you'll see the following folders and files: 14 15``` 16. 17├── public/ 18├── src/ 19│ ├── assets/ 20│ ├── content/ 21│ │ └── docs/ 22│ └── content.config.ts 23├── astro.config.mjs 24├── package.json 25└── tsconfig.json 26``` 27 28Starlight looks for `.md` or `.mdx` files in the `src/content/docs/` directory. Each file is exposed as a route based on its file name. 29 30Images can be added to `src/assets/` and embedded in Markdown with a relative link. 31 32Static assets, like favicons, can be placed in the `public/` directory. 33 34## 🧞 Commands 35 36All commands are run from the root of the project, from a terminal: 37 38| Command | Action | 39| :------------------------ | :----------------------------------------------- | 40| `bun install` | Installs dependencies | 41| `bun dev` | Starts local dev server at `localhost:4321` | 42| `bun build` | Build your production site to `./dist/` | 43| `bun preview` | Preview your build locally, before deploying | 44| `bun astro ...` | Run CLI commands like `astro add`, `astro check` | 45| `bun astro -- --help` | Get help using the Astro CLI | 46 47## 👀 Want to learn more? 48 49Check out [Starlight’s docs](https://starlight.astro.build/), read [the Astro documentation](https://docs.astro.build), or jump into the [Astro Discord server](https://astro.build/chat).