Bartholomew is a simple CMS-like tool for hosting a website. It is compiled entirely to WebAssembly, and can run in any Spin-capable system.
The screenshot below shows how Bartholomew is implemented as the official Fermyon website.
Check out the official documentation and please raise any issues or ask any questions; we are here to help :)
To run the Bartholomew CMS, you'll need Spin.
To build Bartholomew or the bart
command line tool from source, you'll need Rust.
Bartholomew can enforce basic authentication. To enable basic authentication, update the environment for your Spin component and provide the following variables:
environment = { BASIC_AUTH_USERNAME = "bob", BASIC_AUTH_PASSWORD = "foobar" }
Optionally, you can configure the realm
value of the WWW-Authenticate
header sent when requests do not contain an Authorization
header:
environment = { BASIC_AUTH_USERNAME = "bob", BASIC_AUTH_PASSWORD = "foobar", BASIC_AUTH_REALM = "my-realm" }
To build bartholomew on your local machine, you must have rust and the wasm32-wasi
target installed. Run the following command to build it:
cargo build --target wasm32-wasip1 --release