diff --git a/.docs/content/0.installation/0.index.md b/.docs/content/0.installation/0.index.md index fcd138922..57ad93ae3 100644 --- a/.docs/content/0.installation/0.index.md +++ b/.docs/content/0.installation/0.index.md @@ -30,13 +30,13 @@ To deploy ArmoniK.Core locally, you need first to clone the repository [ArmoniK. just ``` -More about local deployment, see [Local Deployment of ArmoniK.Core](./1.local-deployment.md). +More about local deployment, see [Local Deployment of ArmoniK.Core](../0.installation/1.local-deployment.md). ### Tests There are a number of tests that help to verify the successful installation of ArmoniK.Core. Some of them depend of ArmoniK.Core deployment, others do not. -More about tests, see [Tests of ArmoniK.Core](./2.tests.md). +More about tests, see [Tests of ArmoniK.Core](../0.installation/2.tests.md). ## Contribution diff --git a/.docs/content/0.installation/4.perftests-htcmock.md b/.docs/content/0.installation/4.perftests-htcmock.md index becab992e..e4e872dd8 100644 --- a/.docs/content/0.installation/4.perftests-htcmock.md +++ b/.docs/content/0.installation/4.perftests-htcmock.md @@ -73,7 +73,7 @@ docker run --net armonik_network --rm \ ``` We execute this test several times and compute the average tasks throughput. -See this [script](../../../tools/perftest-htcmock.sh) for the exact test process. +See this [script](https://github.com/aneoconsulting/ArmoniK.Core/blob/main/tools/perftest-htcmock.sh) for the exact test process. ## Useful git commands diff --git a/.docs/content/1.concepts/2.tasks.md b/.docs/content/1.concepts/2.tasks.md index d26c00624..a0a1d681f 100644 --- a/.docs/content/1.concepts/2.tasks.md +++ b/.docs/content/1.concepts/2.tasks.md @@ -31,7 +31,7 @@ graph TD ## Status state diagram -```mermaid + stateDiagram-v2 [*] --> Creating: Task is created in the db Creating --> Pending: Dependencies are not available
Creation rpc succeeds @@ -57,4 +57,4 @@ stateDiagram-v2 Completed --> [*] Retried --> [*] Error --> [*] -``` +
diff --git a/.docs/nuxt.config.ts b/.docs/nuxt.config.ts index ddd3bf420..a75cc622f 100644 --- a/.docs/nuxt.config.ts +++ b/.docs/nuxt.config.ts @@ -21,6 +21,9 @@ export default defineNuxtConfig({ siteName: 'ArmoniK Core', siteDescription: 'The heart of ArmoniK' } - } + }, + robots: { + robotsTxt: false + }, })