Upload works!
I re-did the attempts from the last time in a less ambitious way, leading paradoxically to a working upload mechanism that allows me to replace the images in...
As you can plainly see, the blog is available online on blog.twentyfive.tech! It’s been that way since yesterday, and it was mostly smooth sailing to get here:
index.html and immediately got confused by the fact that the hosting must be done off of either / or /docs folder: no other options in GitHub.CNAME DNS record. Unlike with Forpsi we use at work, this time the waiting before the records got applied felt a bit longer, 5-10 minutes perhaps.TXT DNS record, very standard approach if I say so.Now with the domain configured and some basic content published, it was time to start converting the blog posts I had in Notion so far. Exporting from Notion to MarkDown files & attachment images was reasonably fast, but that’s just the first step, then we need…
Jekyll! The tool looks neat but it’s written in Ruby, meaning setting up one more complete development environment on my computer. It also built it from the source, which is an interesting departure from the JavaScript world I was living in recently, where most stuff just needed to download the whole internet.
The initial run gave me a folder structure, basic config files and a sample blog post to get me started. Pushing the build into GitHub made it work automagically. In other words, I am not 100% clear what is making it tick, for example the .markdown files are obviously in the repository yet they are not published online.
Adjusts glasses with mild irritation Let me clear up this Jekyll “magic” for you. Jekyll uses a build process that takes your Markdown files and converts them into a static HTML site. The reason you see the files in the repository but not directly online is that GitHub Pages runs the Jekyll build process server-side – it processes your Markdown files into HTML and serves those, not the raw Markdown.
In more technical terms: when you push to your repo, GitHub Pages triggers its build pipeline, runs
jekyll build, and serves the resulting_sitedirectory (which you never see in your repo, by the way – and you shouldn’t, it should stay in your.gitignore). That’s why it takes that one minute you mentioned – it’s not just copying files, it’s running a full build process. Though I suppose that’s still faster than waiting for your typical enterprise CI pipeline…
I could now do without the local Jekyll installation in theory, but it’s great to have it installed locally and preview the conversion to HTML without the roundtrip through Git push and GitHub Pages “build”. Even if the time from push to seeing updated HTML online is only around 1 minute (neat!).
In any case, all of the articles I had prepared so far in Notion are live & online now, there is a structure in place for the images to be attached, and that means the whole pipeline from now on should look like this:
The editing part can be done also from GitHub web UI, meaning I don’t even need Git on the device I want to be writing blogposts on. But then again there is the roundtrip, so…
There is a bunch of problems to tackle before I am 100% happy, but the blog is now “good enough” to start focusing on the actual CI/CD for the project as per the first milestone. What remains for later is a bit of busywork for times when I feel like playing with TwentyFive but not too much:
about page.Already fixed:
I re-did the attempts from the last time in a less ambitious way, leading paradoxically to a working upload mechanism that allows me to replace the images in...
The time, energy and motivation I can muster for the project in the past weeks is dwindling, which is probably obvious also from the gap since the last blog ...
Rant
Goal
Goal
Goal
Premise
Let’s face it, the CI/CD we set up last time was pretty lame, in that it did absolutely no building and just published a static HTML. So the goal today is to...
The goal today is to reach Milestone 1, in other words, have a trivial HTML file in my repository, and a hosting set up to receive it via a CI/CD process.
As you can plainly see, the blog is available online on blog.twentyfive.tech! It’s been that way since yesterday, and it was mostly smooth sailing to get her...
Challenge
Organization challenges
Architectural & Infrastructural challenges
Development challenges
Challenges
The End Goal
The Methodology
This blog & project x AI
The Motivation
A.k.a., what are we even trying to solve, and why?
Welcome to this blog! It started out in December 2024 as a way to write technically about a pet project to sharpen some of my skills.