From d75c03923955428ff11007f3dec4758f55ed7a46 Mon Sep 17 00:00:00 2001 From: Jason Curtis Date: Thu, 17 Oct 2024 19:37:37 -0500 Subject: [PATCH 1/3] feat: add new content development-branch.md --- src/content/posts/development-branch.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/content/posts/development-branch.md diff --git a/src/content/posts/development-branch.md b/src/content/posts/development-branch.md new file mode 100644 index 0000000..0e1e048 --- /dev/null +++ b/src/content/posts/development-branch.md @@ -0,0 +1,7 @@ +--- +title: 'Development Branch' +published: 2024-10-17T19:29:01-05:00 +tags: [ "slashdev", "cicd", "development", "hugo" ] +draft: true +--- +Recently created a develop branch for the site that is hosted via "dev.slashdev.org". My ability to create an entirely seperate development infrastructure is quite a bit limited by the cost I'm willing to spend for this project. That basically means some shared resources are required. While the production site has cloudfront hosting, the development site does not. Just an nginx virtualhost for the sub-domain dev.slashdev.org. When using hugo to statically generate the content, it allows me to render pages that are expired, published in the future, or still in draft. I can also change the site configuration (i.e. use a red theme) so it's easy for me to distringuish the development site from the production site. Simple design, and if the budget was higher I'd likely deploy an entirely different infrastructure via terraform for my development environment but this achieves my goals at a low cost. From 6590fde2781e92c8f91517834debce31f99dc23a Mon Sep 17 00:00:00 2001 From: Jason Curtis Date: Thu, 26 Mar 2026 17:38:30 -0500 Subject: [PATCH 2/3] fix: update site title to include my name --- src/config/_default/hugo.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/_default/hugo.yaml b/src/config/_default/hugo.yaml index 738da32..b00d249 100644 --- a/src/config/_default/hugo.yaml +++ b/src/config/_default/hugo.yaml @@ -1,6 +1,6 @@ baseURL: '' languageCode: 'en-us' -title: '/Dev' +title: 'Jason Curtis /Dev' theme: 'm10c' canonifyURLs: false enableRobotsTXT: true From b3e5d1133fc10f55db56173399a7f14798a6893e Mon Sep 17 00:00:00 2001 From: Jason Curtis Date: Sat, 18 Apr 2026 19:40:31 -0500 Subject: [PATCH 3/3] fix: update page info --- src/config/development/hugo.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/development/hugo.yaml b/src/config/development/hugo.yaml index ffda0fa..df98109 100644 --- a/src/config/development/hugo.yaml +++ b/src/config/development/hugo.yaml @@ -1,6 +1,6 @@ baseURL: '' languageCode: 'en-us' -title: '/Dev (DEVELOPMENT)' +title: 'Jason Curtis /Dev (DEVELOPMENT)' theme: 'm10c' canonifyURLs: true enableRobotsTXT: false