From fd935dc4a38ddc6bb75db1ce3a269fba2d4c16aa Mon Sep 17 00:00:00 2001 From: ellinors Date: Mon, 13 Jul 2020 14:40:31 +0200 Subject: [PATCH 1/2] fix: updated techdocs container docs --- packages/techdocs-container/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/techdocs-container/README.md b/packages/techdocs-container/README.md index 01cbcc1992..57bdefe894 100644 --- a/packages/techdocs-container/README.md +++ b/packages/techdocs-container/README.md @@ -9,15 +9,15 @@ This is the Docker container that powers the creation of static documentation si Using the TechDocs CLI, we can invoke the latest version of `techdocs-container` via Docker Hub: ```bash -npx @techdocs/cli serve:container +npx @techdocs/cli serve ``` ## Local Development ```bash -docker build ./container -t techdocs-container +docker build . -t mkdocs:local-dev -docker run -w /content -v $(pwd)/mock-docs:/content -p 8000:8000 -it techdocs-container serve -a 0.0.0.0:8000 +docker run -w /content -v $(pwd)/mock-docs:/content -p 8000:8000 -it mkdocs:local-dev serve -a 0.0.0.0:8000 ``` Then open up `http://localhost:8000` on your local machine. From 329305087c4ac648c7faee256ea52ad69b6eebb0 Mon Sep 17 00:00:00 2001 From: ellinors Date: Mon, 13 Jul 2020 15:11:08 +0200 Subject: [PATCH 2/2] fix: add new techdocs folders to codeowners --- .github/CODEOWNERS | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 751ec4914d..d9f9d2ccbe 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -4,6 +4,8 @@ # The last matching pattern takes precedence. # https://help.github.com/articles/about-codeowners/ -* @spotify/backstage-core -/plugins/techdocs @spotify/techdocs-core -/packages/techdocs-cli @spotify/techdocs-core +* @spotify/backstage-core +/plugins/techdocs @spotify/techdocs-core +/plugins/techdocs-backend @spotify/techdocs-core +/packages/techdocs-cli @spotify/techdocs-core +/packages/techdocs-container @spotify/techdocs-core