Find a file
Louis Hollingworth f9e7e5480c
Now has all of the functions as the Astro site.
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-09 19:55:32 +01:00
.github/workflows Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
.vscode Added basic stuff for Nuxt 2022-11-09 17:47:19 +00:00
assets/css Add tailwindcss, add first page 2022-11-13 20:53:51 +00:00
components Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
pages Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
prisma Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
server Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
.gitignore Added basic stuff for Nuxt 2022-11-09 17:47:19 +00:00
.npmrc Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
.nvmrc Updated to use pnpm 2022-06-22 21:04:13 +01:00
app.vue Added basic stuff for Nuxt 2022-11-09 17:47:19 +00:00
CNAME Switch to Astro 2022-10-01 19:35:07 +01:00
nuxt.config.ts Add tailwindcss, add first page 2022-11-13 20:53:51 +00:00
package.json Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
pnpm-lock.yaml Now has all of the functions as the Astro site. 2023-05-09 19:55:32 +01:00
README.md Switch to Astro 2022-10-01 19:35:07 +01:00
tailwind.config.ts Add tailwindcss, add first page 2022-11-13 20:53:51 +00:00
tsconfig.json Added basic stuff for Nuxt 2022-11-09 17:47:19 +00:00

Welcome to Astro

Open in StackBlitz

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

basics

🚀 Project Structure

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

/
├── public/
│   └── favicon.svg
├── src/
│   ├── components/
│   │   └── Card.astro
│   ├── layouts/
│   │   └── Layout.astro
│   └── 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
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro preview
npm run astro --help Get help using the Astro CLI

👀 Want to learn more?

Feel free to check our documentation or jump into our Discord server.