You have found the source code to the website Edward.Delaporte.us. If you're just here for the content, head over to Edward.Delaporte.us.
Many thanks to MKletz for helping inform the GitHub actions pattern I use to PowerShell Pester test this site.
Working locally:
make --serve
On deploying: https://www.linkedin.com/pulse/eleventy-github-pages-lea-tortay/ https://snook.ca/archives/servers/deploying-11ty-to-gh-pages
- Build the image
podman build -t website .- Got an image built?
$ podman image list
REPOSITORY TAG IMAGE ID CREATED SIZE
localhost/website latest 65b259905584 25 seconds ago 1.19 GB- Run it!
podman run --rm -v .:/app -p 8080:8080 localhost/website- Debug it!
podman run --rm -v .:/app -p 8080:8080 -it --entrypoint bash localhost/website- Audit and update packages.
podman run --rm -v .:/app -p 8080:8080 -it --entrypoint bash localhost/website
npm audit fix