astro only
Some checks are pending
/ deploy (push) Waiting to run

This commit is contained in:
Loyyd 2026-06-11 09:14:40 +02:00
parent 189e2b6052
commit e495e875ac
4 changed files with 41 additions and 1 deletions

View file

@ -37,6 +37,12 @@ Run Astro locally while editing:
npm run dev
```
Check that the generated site builds successfully:
```bash
npm run check
```
Regenerate Markdown content from the exported post HTML:
```bash
@ -85,3 +91,16 @@ Then open:
```text
http://localhost:4321/
```
## Deployment
This project deploys as a static Astro build. A deployment job should install
dependencies, run the build, and publish the generated `dist/` directory:
```bash
npm ci
npm run build
```
Use `npm run start` only when you intentionally want Astro to serve the built
output in an environment such as a local or Nomad preview job.