A Fast and Flexible Static Site Generator written in Rust.
Website • Documentation • Report Bug • Request Feature • Contributing Guidelines
Shokunin (職人)
is a highly-optimized, Rust-based static site generator
(ssg) that aims to provide an easy-to-use and powerful tool for building
professional static websites and blogs.
The library extracts metadata and content to generate static HTML files from Markdown, YAML, JSON, and TOML. It also supports HTML themes and custom templates to help you create high quality websites with ease.
It takes just a few minutes to get up and running with Shokunin (職人)
.
To install Shokunin (職人)
, you need to have the Rust toolchain
installed on your machine. You can install the Rust toolchain by
following the instructions on the Rust website.
Once you have the Rust toolchain installed, you can install
Shokunin (職人)
using the following command:
shell
cargo install ssg
For simplicity, we have given Shokunin (職人)
a simple alias ssg
which can stand for Shokunin (職人) Site Generator
or
Static Site Generator
.
You can then run the help command to see the available options and commands:
shell
ssg --help
The minimum supported Rust toolchain version is currently Rust 1.68.0 or later (stable). It is recommended that you install the latest stable version of Rust.
Shokunin (職人)
is supported and tested today on the following
platforms:
| Target | Description | Status | | --- | --- | --- | | aarch64-unknown-linux-gnu | 64-bit Linux systems on ARM architecture | ✅ | | aarch64-unknown-linux-musl | 64-bit Linux systems on ARM architecture | ✅ | | arm-unknown-linux-gnueabi | ARMv6 Linux (kernel 3.2, glibc 2.17) | ✅ | | armv7-unknown-linux-gnueabihf | ARMv7 Linux, hardfloat (kernel 3.2, glibc 2.17) | ✅ | | i686-unknown-linux-gnu | 32-bit Linux (kernel 3.2+, glibc 2.17+) | ✅ | | i686-unknown-linux-musl | 32-bit Linux (kernel 3.2+, musl libc) | ✅ | | x8664-unknown-linux-gnu | 64-bit Linux (kernel 2.6.32+, glibc 2.11+) | ✅ | | x8664-unknown-linux-musl | 64-bit Linux (kernel 2.6.32+, musl libc) | ✅ |
| Target | Description | Status | | --- | --- | --- | | x86_64-apple-darwin | 64-bit macOS (10.7 Lion or later) | ✅ |
The GitHub Actions shows the platforms in which the
Shokunin (職人)
library tests are run.
ℹ️ Info: Please check out our website for more information. You can find our documentation on docs.rs, lib.rs and crates.io.
The Shokunin (職人)
library runs in a Terminal window and can be used
to generate a static website.
Here’s the first command you can enter in your Terminal window to run
Shokunin (職人)
:
shell
ssg --new=mysite --content=content --output=output --template=template
This command will create a new mysite
project in a directory called
public/mysite
and generate a static website in the mysite
directory.
To run with the built-in Rust development server, you can use the following command:
shell
ssg --new=mysite --content=content --output=output --template=template --serve=mysite
To use the Shokunin (職人)
library in your project, add the following
to your Cargo.toml
file:
toml
[dependencies]
shokunin = "0.0.9"
Add the following to your main.rs
file:
rust
extern crate ssg;
use ssg::*;
then you can use the Shokunin (職人)
functions in your application
code.
To get started with Shokunin (職人)
, you can use the examples
provided in the examples
directory of the project.
To run the examples, clone the repository and run the following command in your terminal from the project root directory.
shell
cargo run --example example
For transparency into our release cycle and in striving to maintain
backward compatibility, Shokunin (職人)
follows
semantic versioning.
The project is licensed under the terms of both the MIT license and the Apache License (Version 2.0).
We welcome all people who want to contribute. Please see the contributing instructions for more information.
Contributions in any form (issues, pull requests, etc.) to this project must adhere to the Rust's Code of Conduct.
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.
A big thank you to all the awesome contributors of Shokunin (職人) for their help and support.
A special thank you goes to the Rust Reddit community for providing a lot of useful suggestions on how to improve this project.