diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,3 +1,21 @@ # adast.xyz My personal blog, built with [ssg](https://rgz.ee/ssg.html). + +## Build + + git clone https://git.sr.ht/~adamski/adast.xyz + cd adast.xyz + ./ssg src/ dst/ adast.xyz "https://adast.xyz" + +## Publish + +(This part is only usable by me, but you might learn something) + +I run the following to publish changes to my website. + + rsync -r dst/ adast.xyz:inet/adast.xyz + +### Build & Publish + + ./ssg src/ dst/ adast.xyz "https://adast.xyz" && rsync -r dst/ adast.xyz:inet/adast.xyz |