A Rust Site Engine

A Rust Site Engine, or arse, is static site generator written in Rust. It seeks to provide a simple and flexible base for serving sites using:

Usage

$ arse new 2021-04-29T16:20:54.958949479+00:00 [INFO] Logging started 2021-04-29T16:20:54.961793751+00:00 [INFO] Generating new site configuration Please enter a name for the site: Example Site Please enter the site author's name: Arthur Writeson Please enter comma-separated site topics: one, two, three Please enter an username for the site admin: admin 2021-04-29T16:21:45.054960+00:00 [INFO] Site admin password generated 2021-04-29T16:21:46.119118900+00:00 [INFO] Site admin TOTP token generated 2021-04-29T16:21:46.119677411+00:00 [INFO] Creating site filesystem tree 2021-04-29T16:21:46.121474373+00:00 [INFO] Writing site configuration to disk

Configuration

The admin password is written to admin.pass in plaintext, with filesystem permissions set in an effort to prevent unauthorized disclosure. This should be stored in a password manager and deleted as soon as possible. The same is true for the generated admin TOTP token which is written to admin.totp. Within the generated config.toml, only the TOTP token is stored as plaintext. The admin password is stored and loaded at runtime as an Argon2 PHC string. An example config, as generated, is shown below:

```toml [site] name = 'Example Site' author = 'Arthur Writeson' template = 'default.tmpl' topics = [ 'one', 'two', 'three', ]

[creds] user = 'admin' password = '$argon2id$v=19$m=4096,t=3,p=1$FyQZJt3235EZYuz7Z45CmA$YPtQcukV6rjiXy/fPA4gQpIYalNmUe09QEOUDDz4fZ8' token = 'OZKWU3SWNBLG25TKNRDUCTKCGVYHS3THMJ2E4U2GINYEUM2TOBHXAVQ'

[server] bind = '0.0.0.0' port = 9090

[docpaths] templates = '/home/user/site/templates' webroot = '/home/user/site/webroot' ```

Rendering and Styling

A default template, default.tmpl, is provided statically within the binary. To change the Tera template, add your custom template to the templates directory referenced in the [docpaths] configuration section of config.toml. Once the template is in the templates directory, change the templates parameter in the [site] configuration section to reference the template's file name. This template will now be loaded at runtime.

The following elements are available within the Tera context for rendering:

Further Customizations

Path to 1.0

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.