aboutsummaryrefslogtreecommitdiff
path: root/Caddyfile (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-27feat(content): add my resumeFranck Cuny1-0/+6
Add my resume to the content, with a dedicated CSS. The resume is in org-mode format, and I use `pandoc` to convert it to HTML. This is done when the site is build, and is integrated in the docker image. It is available at /resume.html, but is not listed on the site, that way I can give the URL to who ever is interested in the future. It would be useful to also generate a PDF version of it and store it with other static content.
2022-10-07ref(build): build and deploy with nixFranck Cuny1-0/+14
Refactored the build of the docker image to be done with nix: the flake knows how to build the docker image, using caddy as a HTTP server. It generates a small image, with the configuration for caddy and the site generated by hugo (`nix build`). Deleted the Dockerfile since the creation is done with nix. Got rid of the deployment script since this is also done via the flake (`nix run .#deploy`).