Skip to content

Latest commit

 

History

History
50 lines (46 loc) · 2.84 KB

project-structure.md

File metadata and controls

50 lines (46 loc) · 2.84 KB

Project Structure

Head Start is based on and extends the Astro project structure.

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

/
├── config/
├── docs/
│   └── decision-log/
├── public/
│   └── favicon.svg
├── src/
│   ├── assets/
│   │   └── icons/
│   │       └── name.svg
│   ├── blocks/
│   │   ├── Blocks.astro
│   │   └── SomeContentBlock/
│   │       ├── SomeContentBlock.astro
│   │       └── SomeContentBlock.fragment.graphql
│   ├── components/
│   │   └── SomeUiComponent.astro
│   ├── layouts/
│   │   └── Default.astro
│   ├── lib/
│   │   └── some-helper-function.ts
│   └── pages/
│       ├── api/
|       |   └── some-dynamic-endpoint.ts
│       └── [locale]/
│           ├── index.astro
│           └── _index.query.graphql
└── package.json
  • docs/ contains project documentation.
    • decision-log/ lists all key decisions made during the project. Please read the log so you understand why decisions are made and document key decisions when you make them.
  • src/ contains all website source files that will be handled by Astro.
    • pages/ - Pages are organised by file system routing and are paired with GraphQL query files for data loading.
    • pages/api/ - API routes are dynamic server endpoints with support for path & query params etc.
    • components/ - Components are the elements the website is composed of. This can be Astro and framework specific components.
    • blocks/ - Blocks are a specific set of components which have a complementary content Block in DatoCMS and therefore have a paired GraphQL fragment file.
    • layouts/ - Layouts are Astro components used to provide a reusable UI structure, such as a page template.
    • lib/ - Shared logic and utility helpers, like datocms, i18n and routing.
    • assets/icons/ - SVG icons, can be used with <Icon name={ basename }> (See src/components/Icon/).
  • public/ is for any static assets, like fonts and favicons, that should be available on the website as-is.
  • config/ bundles all our configuration files (like DatoCMS migrations), so the project root doesn't become too cluttered.
  • scripts/ contains all our custom CLI scripts, typically available via package.json > scripts. Also see Commands.