Getting Started

Usage

There are two main parts to a wanderer site: the frame, which contains layouts, templates, and global static files, and the content, which contains text, image assets, and any other site-specific content.

wanderer ships as a Node.JS CLI interface:

wanderer -i ./path/to/content -f ./path/to/frame -o ./build

The full list of CLI variables are as follows:

flagshort namedefaultdescription
--in $1-i./contentpath to the content directory defined in $1
--frame $1-f./framepath to the frame directory defined in $1
--out $1-o./buildpath to the output directory defined in $1
--cache $1-a./.cachepath to the cache directory. The cache is used to speed up partial builds.
--config $1-c./config.tomlpath to a TOML config file for wanderer
--cleanIf set, will delete the output directory before building

You can call wanderer without any arguments to build a site defined in ./frame and ./content with an optional ./config.toml configuration file defined.

This documentation is a wanderer site!