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