Getting this site up and running

I’ve wanted to do some writing for a little while and had the thought of writing in markdown with magic (pipelines) that would magically transform markdown into html. I’d started writing a journal at work at the end of the week to capture how I feel it went, successes, challenges, failures, etc. I also saw that I captured elements of the resources I had been consuming come out in my journaling.

To achieve publishing writing, I wanted a workflow based approach where I can focus on content and for it to cost me as little as possible. It also needs to be as simple as possible with little overhead and maintenance to support focus on writing.

I imagine the workflow to be:

  • Create a branch from main for a topic or post
  • Incrementally write the thing
  • It’s published when merged into main

Pretty simple and light.

Inspiration for how to get this sit up and running came from Gregor Hohpe’s https://architectelevator.com. Gregor uses Jekyll for static site generation and Firebase Hosting.

These both meet my needs for simplicity so as not to get in the way of writing.

I’ve chosen bitbucket for my repository and circleci as my CI\CD platform as I can have a private repository with CI\CD integration with no ongoing cost. Jekyll has a circleci how-to to get you up and running, reducing the barrier to get started. There were some changes to the circleci deploy job for Firebase to be the target instead of an S3 bucket.

I also choose the Jekyll theme minimal-mistakes as it’s free (£0) and has better documentation than the minima theme. Over time, I imagine that I wil customise the theme, but for now, it’s good enough to get started.

I know I’m not using the most up-to-date method of firebase deployment by using a token, that’s ok, I’ve logged myself a ticket.

Getting up and running took a couple of hours or so one evening, I’d consider that pretty low barrier to entry.

contents of .circleci/circle.yml:

version: 2.1
jobs:
  build:
    docker:
      - image: cimg/ruby:3.3.4
    environment:
      BUNDLE_PATH = ~/repo/vendor/bundle
    steps:
      - checkout
      - restore_cache:
          keys:
            - rubygems-v1-
            - rubygems-v1-fallback
      - run:
          name: Bundle Install
          command: bundle check || bundle install
      - save_cache:
          key: rubygems-v1-
          paths:
            - vendor/bundle
      - run:
          name: Print Jekyll version
          command: jekyll -v
      - run:
          name: Jekyll build
          command: bundle exec jekyll build --verbose
      - persist_to_workspace:
          root: ./
          paths:
            - _site
            - ./firebase.json
  deploy:
    docker:
      - image: ubuntu:latest
    steps:
      - attach_workspace:
          at: ./
      - run:
          name: install curl
          command: apt update && apt -y install curl
      - run:
          name: install firebase-tools
          command: curl -sL https://firebase.tools | bash
      - run:
          name: Deploy to Firebase Hosting
          command: firebase deploy --token=$FIREBASE_TOKEN --non-interactive --project <firebase project id>
workflows:
  build-deploy:
    jobs:
      - build:
          name: build
      - deploy:
          requires:
            - build
          filters:
            branches:
              only: main

2025

Getting this site up and running

I’ve wanted to do some writing for a little while and had the thought of writing in markdown with magic (pipelines) that would magically transform markdown i...

Back to Top ↑