no docker
Some checks are pending
/ deploy (push) Waiting to run

This commit is contained in:
Loyyd 2026-06-11 08:43:14 +02:00
parent d3746d8117
commit 189e2b6052
5 changed files with 22 additions and 53 deletions

View file

@ -56,20 +56,32 @@ npm run render:layout
## Local Preview
Build the Astro output first:
Run Astro locally while editing:
```bash
npm run dev
```
Then open Astro's local URL, usually:
```text
http://localhost:4321/
```
For a production-style Astro preview, build the static output first:
```bash
npm run build
```
Then serve `dist/` with Docker:
Then serve `dist/` with Astro preview:
```bash
docker compose up
npm run preview
```
Then open:
```text
http://localhost:8080/
http://localhost:4321/
```