labnote
Description
Create and publish a lab note.
Purpose
Standardise how lab notes are written and deployed.
Workspace
Currently, workspace is located under /root/nanobandit-site
Procedure
- •Create a new markdown file under
src/lab-notes/using the date-based filename convention. - •Add valid front matter:
- •
title - •
date - •
tags(must includelab-note) - •
layout: layouts/base.njk
- •
Example:
code
--- title: "Build in Public: One-Command Deploy Script" date: 2026-02-06 layout: layouts/base.njk tags: lab-note ---
- •Write the lab note content.
- •Save the file.
- •Deploy the site by running:
sh
cd /root/nanobandit-site && ./deploy.sh "publish lab note"
Notes
- •Assumes Eleventy site and deploy script are already configured.
- •Does not validate output or deployment success.