diff --git a/ssg/README.md b/ssg/README.md new file mode 100644 index 0000000..2e8f2c2 --- /dev/null +++ b/ssg/README.md @@ -0,0 +1,36 @@ +# SSG Edition + +The original site was migrated to use 11ty in order to take advantage of features like templating. + +Now `/ssg/_site` should be deployed. + +## Building + +```bash +cd ssg +npm i +npm run build +``` + +## Serving + +Write this Caddyfile: + +```caddy +site.example { + root * ./_site + encode { + zstd + gzip 9 + } + file_server +} +``` + +Then deploy: + +```bash +caddy run +``` + +Then go to http://site.example (well, whatever you changed it to)