From a4926cad7b71926b99ac0a6c36d6ac021df02e3b Mon Sep 17 00:00:00 2001 From: Priya Natarajan Date: Thu, 8 Jan 2026 11:00:00 +0000 Subject: [PATCH] Initial commit: docs site scaffold --- LICENSE | 16 ++++++++++++++++ README.md | 3 +++ docs/index.md | 3 +++ site.yml | 5 +++++ 4 files changed, 27 insertions(+) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 docs/index.md create mode 100644 site.yml diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f3bb2b6 --- /dev/null +++ b/LICENSE @@ -0,0 +1,16 @@ +MIT License + +Copyright (c) 2026 Holtrix Devtools + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. diff --git a/README.md b/README.md new file mode 100644 index 0000000..afe54e0 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Holtrix Engineering Docs + +Source for the internal engineering documentation portal. Built with a static site generator; publishing happens on merge to main. diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..c30bbce --- /dev/null +++ b/docs/index.md @@ -0,0 +1,3 @@ +# Holtrix Engineering Docs + +Start here for internal tooling guides, on-call runbooks, and architecture notes. diff --git a/site.yml b/site.yml new file mode 100644 index 0000000..a8a76a8 --- /dev/null +++ b/site.yml @@ -0,0 +1,5 @@ +site_name: "Holtrix Engineering Docs" +theme: default +nav: + - Home: index.md + - Onboarding: onboarding.md