Sweet Potato is an opinionated and minimal static website generator.
The goal is to be simple and allow the composing and styling of pages without getting in the way and with minimal footprint.
Node >= v14, < v16
Use the sweet potato peeler to create a new project. In it's most basic form, you can set up and start working on a new project like so:
$> npx @wethegit/sweet-potato-peeler my-website
$> cd my-website
$> npm run start
This will give you all of the elements that you might need out of the box.
--template
If you would prefer to start from a specific template, you can use one of the tree templates available at in the bootstrap repo.
Current publicly available templates are:
default
Perfect for projects with multiple localizations and complex page compositions.
minimal
Ideal for landing pages, anything that won't require complex layouts.
$> npx @wethegit/sweet-potato-peeler my-website --template default
This documentation is written and compiled using sweet potato! So if you want a living, breathing example, clone the repo and look through this implementation.