From 9881c47b3125adbf3b809a9ad6493e18f449061d Mon Sep 17 00:00:00 2001 From: blakeromano-il Date: Mon, 31 Oct 2022 10:48:02 -0400 Subject: [PATCH 1/2] Add Info about 404s on Tech Insights Readme Signed-off-by: blakeromano-il --- plugins/tech-insights-backend/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/tech-insights-backend/README.md b/plugins/tech-insights-backend/README.md index 26dac78db5..95fa3ccda9 100644 --- a/plugins/tech-insights-backend/README.md +++ b/plugins/tech-insights-backend/README.md @@ -213,6 +213,8 @@ and modify the `techInsights.ts` file to contain a reference to the FactChecker }); ``` +NOTE: You need a Fact Checker Factory to get access to the backend routes that will allow the facts to be checked. If you don't have a Fact Checker Factory you will see 404s and potentially other errors. + To be able to run checks, you need to additionally add individual checks into your FactChecker implementation. For examples how to add these, you can check the documentation of the individual implementation of the FactChecker #### Modifying check persistence From f12e9e5b8c353da30f1a5076db47271b49c30122 Mon Sep 17 00:00:00 2001 From: blakeromano-il Date: Mon, 31 Oct 2022 10:49:07 -0400 Subject: [PATCH 2/2] Add changeset Signed-off-by: blakeromano-il --- .changeset/stale-dots-love.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/stale-dots-love.md diff --git a/.changeset/stale-dots-love.md b/.changeset/stale-dots-love.md new file mode 100644 index 0000000000..46327937f0 --- /dev/null +++ b/.changeset/stale-dots-love.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-tech-insights-backend': patch +--- + +Add Documentation on 404 Errors