The Site Is Alive
My private GitHub repository was setup.
My Domain was registered and active with Cloudflare.
Cloudflare Pages “deployed” correctly.
yet the site still did not work.

The issue turned out to be that I had mistakenly deployed the Hugo static site on Cloudflare as a Worker instead of a Page. Once I deleted the Cloudflare worker and re-setup as a Cloudflare Page everything worked as expected.
So, I wanted to get the first post out on the 1st of this month but I guess the first post on the 7th day of the month is okay too. At least it’s still January.

Here’s the command I used to create my first post:
hugo new posts/the-site-is-alive.md
Other Good Information To Know
Images
Hugo maps the static/ directory directly to the static root so I can reference images as:

Line Breaks
If you don’t want line breaks to form long poorly punctated paragraphs, make sure to hit spacebar twice to insert two spaces after each line.
Example: With only one space after each line of text
Look Line 1
Look Line 2
Look Line 3
Example: With two spaces after each line of text
Look Line 1
Look Line 2
Look Line 3
Workflow Pseudocode
- Update content in C:\mysites\questforkanji.com\
- hugo to build (making sure new articles are not in draft)
- git add ., git commit -m “message for commit”
- Cloudflare Pages will then do it’s automation to show the update.