Skip to content

diepoe/limonadenfabrik

Folders and files

NameName
Last commit message
Last commit date
Aug 14, 2023
Oct 19, 2021
Apr 5, 2023
Sep 28, 2021
Sep 28, 2021
Sep 28, 2021
Sep 28, 2021
Sep 28, 2021
Oct 4, 2021
Sep 28, 2021
Oct 15, 2024
Aug 14, 2023
Oct 15, 2024
Sep 28, 2021
Oct 5, 2021
Oct 7, 2021

Repository files navigation

Limonadenfabrik

πŸ‘¨β€πŸ’» dev setup

πŸš€ Project Structure

Inside of your Astro project, you'll see the following folders and files:

/
β”œβ”€β”€ public/
β”œβ”€β”€ src/
β”‚   └── pages/
β”‚       └── index.astro
└── package.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
pnpm install Installs dependencies
pnpm run dev Starts local dev server at localhost:3000
pnpm run build Build your production site to ./dist/