shokunin
v0.0.32
Генератор статических сайтов, ориентированный на контент, созданный на Rust и оптимизированный для производительности, доступности и видимости в поисковых системах.
• Веб-сайт • Документация • Сообщить об ошибке • Запросить функцию • Рекомендации по участию
Shokunin — это высокопроизводительный генератор статических сайтов (SSG), разработанный на Rust, который отдает приоритет:
Добавьте в свой Cargo.toml
:
[ dependencies ]
ssg = " 0.0.32 "
Или установить через Cargo:
cargo install ssg
use staticdatagen :: compiler :: service :: compile ;
use std :: { path :: Path , error :: Error } ;
fn main ( ) -> Result < ( ) , Box < dyn Error > > {
// Define directory paths
let build_dir = Path :: new ( "./examples/build" ) ; // Build directory
let content_dir = Path :: new ( "./examples/content" ) ; // Content directory
let public_dir = Path :: new ( "./examples/public" ) ; // Public directory
let template_dir = Path :: new ( "./examples/templates" ) ; // Templates
// Generate site
compile ( build_dir , content_dir , public_dir , template_dir ) ? ;
println ! ( " Site generated successfully!" ) ;
Ok ( ( ) )
}
Создайте новый сайт:
# Full command syntax
ssg --content=content --template=templates --serve=public
# Short form
ssg -c=content -t=templates -o=output -s=public
# Using cargo run
cargo run --bin ssg -- -c= " ./examples/content " -t= " ./examples/templates " -s= " ./examples/public "
Вариант | Короткий | Описание | Необходимый |
---|---|---|---|
--content | -c | Путь к содержимому | Да |
--template | -t | Путь к шаблону | Да |
--serve | -s | Публичный путь к серверу | Да |
Попробуйте наши примеры реализации:
# Basic example
# # Convert Markdown to static sites effortlessly, with templates, organized builds, and instant local hosting.
git clone https://github.com/sebastienrousseau/shokunin.git
cd shokunin
cargo run --example basic
# Quick start example
# # Create, compile, and host a static site effortlessly with Shokunin: simple setup, error handling, and instant local server for previews.
cargo run --example quickstart
# Multilingual example
# # Build multilingual static sites effortlessly: generate language-specific sites, create a language selector, and serve all from a single directory.
cargo run --example multilingual
Мы приветствуем вклады! Подробную информацию о следующем:
Этот проект имеет двойную лицензию:
по вашему выбору.
Особая благодарность всем участникам, которые помогли создать Шокунина.