Add build info to ssg/README.md

This commit is contained in:
Nexus 2024-06-18 01:50:11 +01:00
parent c08c8132e9
commit b8e182df14
Signed by: nex
GPG key ID: 0FA334385D0B689F

36
ssg/README.md Normal file
View file

@ -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)