Quick Start
Get a Hanamark site up and running in under 5 minutes.
Step 1: Initialize Project
./hanamark init
This creates a configurables/ directory with:
- Default configuration
- Sample templates
- Example content
- Static file structure
Step 2: Add Content
Create a Markdown file in configurables/source_md/:
---
created_on: 2024-12-26
tags: ["hello", "first-post"]
---
# My First Post
Welcome to my new site built with Hanamark!
Step 3: Build
./hanamark build
This generates your static site in output_html/.
Step 4: Preview
./hanamark serve
Open http://localhost:3000 in your browser.
What’s Next?
- Edit
configurables/config.jsonto customize your site - Modify templates in
configurables/templates/ - Add CSS in
configurables/static/css/ - Create more content in
configurables/source_md/