2024-04-18 04:05:38 +03:00
|
|
|
---
|
2024-04-18 04:12:03 +03:00
|
|
|
title: "README"
|
|
|
|
description: "the README.md file of this project"
|
|
|
|
author: "slonkazoid"
|
2024-04-19 22:41:14 +03:00
|
|
|
created_at: 2024-04-18T04:15:26+03:00
|
2024-04-18 04:05:38 +03:00
|
|
|
---
|
|
|
|
|
2024-04-18 04:16:12 +03:00
|
|
|
# bingus-blog
|
2024-04-18 04:05:38 +03:00
|
|
|
|
|
|
|
blazingly fast markdown blog software written in rust memory safe
|
|
|
|
|
|
|
|
## TODO
|
|
|
|
|
2024-05-02 19:23:20 +03:00
|
|
|
- [x] RSS
|
2024-04-19 22:41:14 +03:00
|
|
|
- [x] finish writing this document
|
|
|
|
- [x] document config
|
2024-04-18 04:05:38 +03:00
|
|
|
- [ ] extend syntect options
|
|
|
|
- [ ] general cleanup of code
|
2024-04-30 09:34:51 +03:00
|
|
|
- [ ] better error reporting and error pages
|
2024-04-19 22:41:14 +03:00
|
|
|
- [ ] better tracing
|
2024-04-30 11:41:35 +03:00
|
|
|
- [x] cache cleanup task
|
2024-04-30 09:34:51 +03:00
|
|
|
- [ ] ^ replace HashMap with HashCache once i implement [this](https://github.com/wvwwvwwv/scalable-concurrent-containers/issues/139)
|
2024-04-20 23:02:23 +03:00
|
|
|
- [x] (de)compress cache with zstd on startup/shutdown
|
2024-04-19 22:41:14 +03:00
|
|
|
- [ ] make date parsing less strict
|
2024-06-13 21:52:18 +03:00
|
|
|
- [x] make date formatting better
|
2024-04-30 09:34:51 +03:00
|
|
|
- [ ] date formatting respects user timezone
|
2024-05-01 18:59:34 +03:00
|
|
|
- [x] clean up imports and require less features
|
2024-04-30 09:34:51 +03:00
|
|
|
- [ ] improve home page
|
2024-05-01 23:23:19 +03:00
|
|
|
- [x] tags
|
2024-05-02 19:23:20 +03:00
|
|
|
- [ ] multi-language support
|
2024-04-18 04:05:38 +03:00
|
|
|
- [x] be blazingly fast
|
|
|
|
- [x] 100+ MiB binary size
|
|
|
|
|
2024-04-19 22:41:14 +03:00
|
|
|
## Configuration
|
|
|
|
|
|
|
|
the default configuration with comments looks like this
|
|
|
|
|
|
|
|
```toml
|
2024-06-13 21:52:18 +03:00
|
|
|
title = "bingus-blog" # title of the blog
|
|
|
|
# description of the blog
|
|
|
|
description = "blazingly fast markdown blog software written in rust memory safe"
|
2024-05-14 12:26:43 +03:00
|
|
|
markdown_access = true # allow users to see the raw markdown of a post
|
|
|
|
# endpoint: /posts/<name>.md
|
2024-06-13 21:52:18 +03:00
|
|
|
date_format = "RFC3339" # format string used to format dates in the backend
|
|
|
|
# it's highly recommended to leave this as default,
|
|
|
|
# so the date can be formatted by the browser.
|
|
|
|
# format: https://docs.rs/chrono/latest/chrono/format/strftime/index.html#specifiers
|
|
|
|
js_enable = true # enable javascript (required for above)
|
2024-05-01 18:25:01 +03:00
|
|
|
|
2024-05-02 19:23:20 +03:00
|
|
|
[rss]
|
|
|
|
enable = false # serve an rss field under /feed.xml
|
|
|
|
# this may be a bit resource intensive
|
|
|
|
link = "https://..." # public url of the blog, required if rss is enabled
|
|
|
|
|
2024-05-01 18:25:01 +03:00
|
|
|
[dirs]
|
|
|
|
posts = "posts" # where posts are stored
|
|
|
|
media = "media" # directory served under /media/
|
|
|
|
|
|
|
|
[http]
|
|
|
|
host = "0.0.0.0" # ip to listen on
|
|
|
|
port = 3000 # port to listen on
|
|
|
|
|
|
|
|
[cache]
|
|
|
|
enable = true # save metadata and rendered posts into RAM
|
|
|
|
# highly recommended, only turn off if absolutely necessary
|
|
|
|
cleanup = true # clean cache, highly recommended
|
|
|
|
#cleanup_interval = 86400000 # clean the cache regularly instead of just at startup
|
|
|
|
# uncomment to enable
|
|
|
|
persistence = true # save the cache to on shutdown and load on startup
|
|
|
|
file = "cache" # file to save the cache to
|
|
|
|
compress = true # compress the cache file
|
|
|
|
compression_level = 3 # zstd compression level, 3 is recommended
|
|
|
|
|
|
|
|
[render]
|
2024-04-20 23:02:23 +03:00
|
|
|
syntect.load_defaults = false # include default syntect themes
|
|
|
|
syntect.themes_dir = "themes" # directory to include themes from
|
2024-04-19 22:41:14 +03:00
|
|
|
syntect.theme = "Catppuccin Mocha" # theme file name (without `.tmTheme`)
|
|
|
|
```
|
|
|
|
|
|
|
|
you don't have to copy it from here, it's generated if it doesn't exist
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2024-04-30 11:44:00 +03:00
|
|
|
this project uses nightly-only features.
|
|
|
|
make sure you have the nightly toolchain installed.
|
|
|
|
|
2024-04-19 22:41:14 +03:00
|
|
|
build the application with `cargo`:
|
|
|
|
|
|
|
|
```sh
|
2024-04-30 11:44:00 +03:00
|
|
|
cargo +nightly build --release
|
2024-04-19 22:41:14 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
the executable will be located at `target/release/bingus-blog`.
|
|
|
|
|
|
|
|
### Building for another architecture
|
|
|
|
|
|
|
|
you can use the `--target` flag in `cargo build` for this purpose
|
|
|
|
|
|
|
|
building for `aarch64-unknown-linux-musl` (for example, a Redmi 5 Plus running postmarketOS):
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# install the required packages to compile and link aarch64 binaries
|
|
|
|
sudo pacman -S aarch64-linux-gnu-gcc
|
|
|
|
export CC=aarch64-linux-gnu-gcc
|
|
|
|
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=$CC
|
2024-04-30 11:44:00 +03:00
|
|
|
cargo +nightly build --release --target=aarch64-unknown-linux-musl
|
2024-04-19 22:41:14 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
your executable will be located at `target/<target>/release/bingus-blog` this time.
|
|
|
|
|
|
|
|
## Writing Posts
|
|
|
|
|
|
|
|
posts are written in markdown. the requirements for a file to count as a post are:
|
|
|
|
|
|
|
|
1. the file must be in the root of the `posts` directory you configured
|
|
|
|
2. the file's name must end with the extension `.md`
|
|
|
|
3. the file's contents must begin with a valid [front matter](#front-matter)
|
|
|
|
|
|
|
|
this file counts as a valid post, and will show up if you just `git clone` and
|
|
|
|
`cargo r`. there is a symlink to this file from the default posts directory
|
|
|
|
|
|
|
|
## Front Matter
|
|
|
|
|
|
|
|
every post **must** begin with a **valid** front matter. else it wont be listed
|
|
|
|
in / & /posts, and when you navigate to it, you will be met with an error page.
|
|
|
|
the error page will tell you what the problem is.
|
|
|
|
|
|
|
|
example:
|
|
|
|
|
|
|
|
```md
|
|
|
|
---
|
|
|
|
title: "README"
|
|
|
|
description: "the README.md file of this project"
|
|
|
|
author: "slonkazoid"
|
|
|
|
created_at: 2024-04-18T04:15:26+03:00
|
|
|
|
#modified_at: ... # see above
|
|
|
|
---
|
|
|
|
```
|
|
|
|
|
|
|
|
only first 3 fields are required. if it can't find the other 2 fields, it will
|
|
|
|
get them from filesystem metadata. if you are on musl and you omit the
|
|
|
|
`created_at` field, it will just not show up
|
|
|
|
|
|
|
|
the dates must follow the [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339)
|
|
|
|
standard. examples of valid and invalid dates:
|
|
|
|
|
|
|
|
```diff
|
|
|
|
+ 2024-04-18T01:15:26Z # valid
|
|
|
|
+ 2024-04-18T04:15:26+03:00 # valid (with timezone)
|
2024-04-20 13:10:57 +03:00
|
|
|
- 2024-04-18T04:15:26 # invalid (missing Z)
|
2024-04-19 22:41:14 +03:00
|
|
|
- 2024-04-18T04:15Z # invalid (missing seconds)
|
|
|
|
- # everything else is also invalid
|
|
|
|
```
|
|
|
|
|
|
|
|
## Routes
|
|
|
|
|
|
|
|
- `GET /`: index page, lists posts
|
|
|
|
- `GET /posts`: returns a list of all posts with metadata in JSON format
|
|
|
|
- `GET /posts/<name>`: view a post
|
|
|
|
- `GET /posts/<name>.md`: view the raw markdown of a post
|
|
|
|
- `GET /post/*`: redirects to `/posts/*`
|
2024-04-20 23:02:23 +03:00
|
|
|
|
|
|
|
## Cache
|
|
|
|
|
|
|
|
bingus-blog caches every post retrieved and keeps it permanently in cache.
|
|
|
|
the only way a cache entry is removed is when it's requested and it does
|
|
|
|
not exist in the filesystem. cache entries don't expire, but they get
|
|
|
|
invalidated when the mtime of the markdown file changes.
|
|
|
|
|
|
|
|
if cache persistence is on, the cache is compressed & written on shutdown,
|
|
|
|
and read & decompressed on startup. one may opt to set the cache location
|
|
|
|
to point to a tmpfs so it saves and loads really fast, but it doesn't persist
|
|
|
|
across boots, also at the cost of even more RAM usage.
|
|
|
|
|
|
|
|
the compression reduced a 3.21 MB file cache into 0.18 MB with almost instantly.
|
|
|
|
there is basically no good reason to not have compression on.
|