···11+# Astro Starter Kit: Basics
22+33+```sh
44+bun create astro@latest -- --template basics
55+```
66+77+[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
88+[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
99+[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
1010+1111+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
1212+1313+
1414+1515+## 🚀 Project Structure
1616+1717+Inside of your Astro project, you'll see the following folders and files:
1818+1919+```text
2020+/
2121+├── public/
2222+│ └── favicon.svg
2323+├── src/
2424+│ ├── layouts/
2525+│ │ └── Layout.astro
2626+│ └── pages/
2727+│ └── index.astro
2828+└── package.json
2929+```
3030+3131+To learn more about the folder structure of an Astro project, refer to
3232+[our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
3333+3434+## 🧞 Commands
3535+3636+All commands are run from the root of the project, from a terminal:
3737+3838+| Command | Action |
3939+| :-------------------- | :----------------------------------------------- |
4040+| `bun install` | Installs dependencies |
4141+| `bun dev` | Starts local dev server at `localhost:4321` |
4242+| `bun build` | Build your production site to `./dist/` |
4343+| `bun preview` | Preview your build locally, before deploying |
4444+| `bun astro ...` | Run CLI commands like `astro add`, `astro check` |
4545+| `bun astro -- --help` | Get help using the Astro CLI |
4646+4747+## 👀 Want to learn more?
4848+4949+Feel free to check [our documentation](https://docs.astro.build) or jump into
5050+our [Discord server](https://astro.build/chat).