Getting started

Starter structure

your_project/
├─ src/
│    ├─ content/ <- Where you put your markdown files
│    |  ├─ [...]
│    |  └─ config.ts <- Collections Zod schemas
│    └─ env.d.ts 
├─ astro.config.mjs <- Astro & Astropi configuration
├─ package.json
└─ README.md

Usefull commands

# Start the development server
npm run dev
# Build the project
npm run build