From c987884e5ae54509c8774ee774db3df3da58f769 Mon Sep 17 00:00:00 2001 From: "vortexa-developer-portal[bot]" <232799557+vortexa-developer-portal[bot]@users.noreply.github.com> Date: Wed, 26 Nov 2025 16:30:36 +0000 Subject: [PATCH] Add Vortexa catalog + TechDocs integration --- catalog-info.yaml | 12 ++++++++++++ docs/index.md | 6 ++++++ mkdocs.yaml | 8 ++++++++ 3 files changed, 26 insertions(+) create mode 100644 catalog-info.yaml create mode 100644 docs/index.md create mode 100644 mkdocs.yaml diff --git a/catalog-info.yaml b/catalog-info.yaml new file mode 100644 index 0000000..d0481e1 --- /dev/null +++ b/catalog-info.yaml @@ -0,0 +1,12 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dynamicio + description: A pandas I/O wrapper. + annotations: + backstage.io/techdocs-ref: dir:. # enables TechDocs for the repo + github.com/project-slug: "VorTECHsa/dynamicio" +spec: + type: library + lifecycle: production + owner: group:default/dpt-turingeries diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..79f9973 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,6 @@ +# dynamicio + +Welcome! This is your docs home page. + +- Edit content in `docs/` +- Configure nav in `mkdocs.yaml` diff --git a/mkdocs.yaml b/mkdocs.yaml new file mode 100644 index 0000000..7dff439 --- /dev/null +++ b/mkdocs.yaml @@ -0,0 +1,8 @@ +site_name: dynamicio +nav: + - Home: index.md + +plugins: + - techdocs-core + +docs_dir: docs