# Stefan Kreutz' blog This is the source code of my personal website: https://www.skreutz.com/. This project's original source code is hosted [here](https://git.skreutz.com/blog.git/). ## Usage Build the static website generator. Note that GHC needs more than 4GB of memory to build Pandoc: $ cabal v2-clean $ cabal v2-update $ ulimit -Sd $((8*1024*1024)) $ nice cabal v2-build --jobs $ cabal v2-freeze Print the help text of the custom static website generator: $ cabal v2-run exe:site -- --help Serve a preview of the website at http://localhost:8080/: $ cabal v2-run exe:site -- clean $ cabal v2-run exe:site -- watch Deploy the website: $ cabal v2-run exe:site -- deploy Alternatively build the experimental Nix flake: $ nix build git+https://git.skreutz.com/blog.git $ open ./result/srv/www.skreutz.com/index.html ## License Except where otherwise noted, content is licensed under [CC BY-SA 4.0](LICENSE-CC-BY-SA-4.0). The source code is dual-licensed under [MIT](LICENSE-MIT) or [Apache License, Version 2.0](LICENSE-APACHE-2.0). ## Credits Built with [Hakyll](https://jaspervdj.be/hakyll/) and [Pandoc](https://pandoc.org/).