1# Note
2
3This is no longer under maintenance, since its goal has been achieved but I
4still use hugo[^1] as it is simpler and easier to write and deploy.
5
6# A single binary blog
7
8After reading [this
9article](https://www.andreinc.net/2022/04/10/a-blog-that-is-a-single-executable-binary)
10by Andrei Ciobanu it sparkled in me to do the same thing but with rust.
11It is going to be a bit bigger than micro ;)
12
13To achieve that I'll be using the following:
14
15- Sailfish for templating
16- hyper for http server
17- rust-embed for adding the files into the binary.
18
19
20## Goals
21
22* the whole blog should be a single binary
23* keep everything in one request
24* try to keep it under 50kB and a hard set at 100kB before any kind of
25compression or minification.
26
27[^1]: https://gohugo.io/