···11+# Astro Starter Kit: Minimal
22+33+```sh
44+pnpm 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+| `pnpm install` | Installs dependencies |
3535+| `pnpm dev` | Starts local dev server at `localhost:4321` |
3636+| `pnpm build` | Build your production site to `./dist/` |
3737+| `pnpm preview` | Preview your build locally, before deploying |
3838+| `pnpm astro ...` | Run CLI commands like `astro add`, `astro check` |
3939+| `pnpm 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).