Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 691 Bytes

README.md

File metadata and controls

43 lines (31 loc) · 691 Bytes

Blog builder

Personal static blog builder

Usage

blogbuilder blog_data/ output_dir/

blog data directory structure

blog_name.txt # Name of the blog
posts/
  - some-post.md
  - other-post.md
templates/
  - base.tmpl

See src/blogbuilder/tests/example-test-app/ for an example.

Dev scripts

# Activate venv - do this first, per shell
source .venv/bin/activate.fish

# Install
scripts/./install.fish

# Lint
scripts/./lint.fish

## Run tests
scripts/./run-tests.fish

## Install blogbuilder pip egg as editable install
scripts/./install-pip-editable.fish
## Install blogbuilder pip package as built package
scripts/./install-pip-release.fish