From 2179a3814ad97dadfb7e9ada241beace34293ee9 Mon Sep 17 00:00:00 2001 From: Aitor Murguzur Date: Thu, 22 Feb 2024 17:23:09 +0100 Subject: [PATCH] Fix build error We had two images with same naming, this was provoking an error. --- docs/Tutorials/Step 3 - Creating a Schema.md | 2 +- docusaurus.config.ts | 10 ++++++---- ...{DataIngestionFlow.png => dataIngestionForm.png} | Bin 3 files changed, 7 insertions(+), 5 deletions(-) rename static/img/{DataIngestionFlow.png => dataIngestionForm.png} (100%) diff --git a/docs/Tutorials/Step 3 - Creating a Schema.md b/docs/Tutorials/Step 3 - Creating a Schema.md index 862efd4..02e2a50 100644 --- a/docs/Tutorials/Step 3 - Creating a Schema.md +++ b/docs/Tutorials/Step 3 - Creating a Schema.md @@ -9,7 +9,7 @@ Now that you have created a Message Type, you have to define the shape of the da Schemas have a set of data types you can choose in order to define the shape of the data you are sending. It ranges from simple types such as **Integers**, **Decimals** and **Boolean** to more complex types like **Objects/Dictionaries** and **Collection/Arrays**. Each with their own properties and restrictions. This tutorial will not dive into the intricacies of each data type but if you wish to get a more detailed explanation about them, please refer to its reference guide \\. With that said, assuming you are still in the **My test message type** page (the one you created in the previous step), click on **New schema**. Once you have done that you will see the following page: -![Data Ingestion Flow](/img/DataIngestionFlow.png) +![Data Ingestion Flow](/img/dataIngestionForm.png) Schemas are defined with items. They can be a single item or multiple items depending on **Item type** you select. To create your first item click on **Add new item**. This will open up a dropdown with the different item data types you can choose from. For the purpose of this tutorial select the **Object** item type. diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 6b2622f..b65cda6 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -15,12 +15,14 @@ const config: Config = { // GitHub pages deployment config. // If you aren't using GitHub pages, you don't need these. - organizationName: 'facebook', // Usually your GitHub org/user name. - projectName: 'docusaurus', // Usually your repo name. - + organizationName: 'biotz', // Usually your GitHub org/user name. + projectName: 'academy', // Usually your repo name. + + deploymentBranch: 'gh-pages', onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'warn', - + + trailingSlash: false, // Even if you don't use internationalization, you can use this field to set // useful metadata like html lang. For example, if your site is Chinese, you // may want to replace "en" with "zh-Hans". diff --git a/static/img/DataIngestionFlow.png b/static/img/dataIngestionForm.png similarity index 100% rename from static/img/DataIngestionFlow.png rename to static/img/dataIngestionForm.png