a minimal static blog generator written in Go.
no JavaScript. no frameworks. just markdown → HTML.
built to power sargx.net.
# build
make build
# create a new site
./sitex create my-site
cd my-site
# build static output
../sitex build
# build + local preview
../sitex serve --port 5000- edit
site.toml— define your site, posts, and pages - write markdown in
posts/andpages/ - run
sitex build - deploy the
dist/folder anywhere
| command | description |
|---|---|
sitex create <dir> |
scaffold a new site |
sitex build |
build static output to dist/ |
sitex build -c path.toml |
build with a custom config file |
sitex serve |
build + start local server on port 5000 |
sitex serve -p 8080 |
serve on a custom port |
sitex -v build |
verbose output |