Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 512 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 512 Bytes

https://gaultier.github.io/blog/

Quickstart

Requirements:

E.g.: apt install cmark git

Build this blog (i.e. convert markdown files to HTML):

$ odin run src
# Or directly (this binary is available after running the above command once, or from the Github releases):
$ ./src.bin

Serve the files locally:

$ python3 -m http.server -d ..

Optimize a PNG:

$ pngquant foo.png -o foo.tmp && mv foo.tmp foo.png