From a04e8fde9587d9b947ae749abf90cdfa60d22417 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sat, 8 Jul 2023 00:14:47 -0400 Subject: [PATCH] Properly marked the sinatra post as a draft; changed the docker dev container to show drafts --- bin/docker-watch.sh | 3 ++- .../sinatra-ruby-is-beautiful.markdown} | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{_posts/2023-06-14-sinatra-ruby-is-beautiful.markdown => _drafts/sinatra-ruby-is-beautiful.markdown} (99%) diff --git a/bin/docker-watch.sh b/bin/docker-watch.sh index e99ee51..1bb7d86 100755 --- a/bin/docker-watch.sh +++ b/bin/docker-watch.sh @@ -5,4 +5,5 @@ docker run -d --rm \ --publish 4000:4000 \ --name="jekyll" \ jekyll/jekyll:4 \ - jekyll serve + jekyll serve \ + --drafts diff --git a/src/_posts/2023-06-14-sinatra-ruby-is-beautiful.markdown b/src/_drafts/sinatra-ruby-is-beautiful.markdown similarity index 99% rename from src/_posts/2023-06-14-sinatra-ruby-is-beautiful.markdown rename to src/_drafts/sinatra-ruby-is-beautiful.markdown index ca4b17f..f0757ed 100644 --- a/src/_posts/2023-06-14-sinatra-ruby-is-beautiful.markdown +++ b/src/_drafts/sinatra-ruby-is-beautiful.markdown @@ -4,7 +4,6 @@ title: "Sinatra (Ruby) is Beautiful." description: "Sinatra is a beautifully simple web framework. It's old, but it works!" date: 2023-06-14 09:00:00 -0400 tags: linux -draft: True --- By trade I'm a System Administrator/Network Engineer, so most of my days are filled with deploying applications, dealing with oddball software vendors and their lackluster documentation, licensing (yuck!), and planning/building out infrastructure to support operations. But I also like to do some coding on the side, and in particular I like to see what I can build to maybe be useful one day, and in particular I like spinning up web sites/apps.