Crates.io | heiwa |
lib.rs | heiwa |
version | 0.1.15 |
source | src |
created_at | 2023-09-01 19:33:17.700699 |
updated_at | 2024-03-06 21:42:16.069141 |
description | A minimalist flat file CMS |
homepage | |
repository | https://codeberg.org/haruka/heiwa |
max_upload_size | |
id | 961115 |
size | 134,613 |
A minimalist dynamic flat-file CMS.
Heiwa is currently in BETA state.
Bugs may occurs and there is still a lot of work to do on optimizing the code.
Heiwa is a minimalist flat-file CMS using Markdown to generate HTML pages. There is no build step, as static site generator, since pages are generated on the fly when accessing them from the browser.
The Rust language, also known for is performance regarding strings and files operations, makes Heiwa very fast, to dynamically render web pages.
The Heiwa project is under GPLv3 licence : https://www.gnu.org/licenses/gpl-3.0.en.html
Using Rust package manager :
cargo install heiwa
Initialize a new Heiwa website project :
heiwa init project_name
Add a theme in the project_name/themes/theme_name
directory. The Heiwa default theme can be found here : Shizen
Edit the project_name/config.toml
file accordingly.
Launch the builtin web server :
cd project_name
heiwa serve
Access your website at localhost:3000
.
TODO
TODO