Overview

Hwaro (화로) is a fast, lightweight static site generator built with Crystal.

Features

Quick Start

  # Clone and build
git clone https://github.com/hahwul/hwaro
cd hwaro && shards build --release

# Create a new site
./bin/hwaro init my-site --scaffold docs
cd my-site

# Start development server
hwaro serve

Visit http://localhost:3000 to see your site.

How It Works

  1. Write content in content/ using Markdown
  2. Design templates in templates/ using Jinja2
  3. Build static HTML with hwaro build
  4. Deploy the public/ folder anywhere

Next Steps

In This Section