From 7130e1bfb3dc60ebd2ccc036568e8f83318e5780 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 7 Jan 2025 08:37:07 +0100 Subject: [PATCH 1/4] ref: removed duplicated header --- docs/content/{dev => Guides}/dev.md | 4 ++-- docs/content/{setup => Guides}/setup.md | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) rename docs/content/{dev => Guides}/dev.md (95%) rename docs/content/{setup => Guides}/setup.md (98%) diff --git a/docs/content/dev/dev.md b/docs/content/Guides/dev.md similarity index 95% rename from docs/content/dev/dev.md rename to docs/content/Guides/dev.md index a966222..c72083a 100644 --- a/docs/content/dev/dev.md +++ b/docs/content/Guides/dev.md @@ -1,8 +1,8 @@ --- -title: Develop Aquila +title: Aquila Development Guide --- -# Develop Aquila +Follow this guide to develop Aquila. ## Requirements diff --git a/docs/content/setup/setup.md b/docs/content/Guides/setup.md similarity index 98% rename from docs/content/setup/setup.md rename to docs/content/Guides/setup.md index 7132026..19d676a 100644 --- a/docs/content/setup/setup.md +++ b/docs/content/Guides/setup.md @@ -2,12 +2,8 @@ title: Aquila Setup Guide --- -# Aquila Setup Guide - Follow this guide to set up Aquila. ---- - ## Setup Options ### Using Docker From 059c4a37f86849d83ded7d50a866ddccf17a0cfa Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 7 Jan 2025 08:37:21 +0100 Subject: [PATCH 2/4] feat: added index description --- docs/content/index.mdx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/content/index.mdx b/docs/content/index.mdx index 8f3a3cd..2b04d2c 100644 --- a/docs/content/index.mdx +++ b/docs/content/index.mdx @@ -6,11 +6,21 @@ template: splash import {Card, CardGrid} from '@astrojs/starlight/components'; +## What is Aquila? + +Aquila is a service running inside the execution block. It acts as the gateway to external services. Any request that needs to enter or exit the execution environment is routed through Aquila. + +Aquila keeps internal workflows updated so the execution service knows what’s happening. It communicates with actions to receive their configurations, structures, and much more. + +--- + +Refer to the guides if you want to work on or with Aquila. + - + View the setup guide for aquila. - + Development for aquila. \ No newline at end of file From 60fc45a89d7623e559582b4485a18cb46ff5a7f9 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 7 Jan 2025 08:43:13 +0100 Subject: [PATCH 3/4] fix: corrected the description of documentation card --- docs/content/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/index.mdx b/docs/content/index.mdx index 2b04d2c..19015ef 100644 --- a/docs/content/index.mdx +++ b/docs/content/index.mdx @@ -21,6 +21,6 @@ Refer to the guides if you want to work on or with Aquila. View the setup guide for aquila. - Development for aquila. + View the development guide for aquila. \ No newline at end of file From eb360120c0ea92c98a6ca12fdbd0acd5c3a79b43 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 7 Jan 2025 08:46:57 +0100 Subject: [PATCH 4/4] ref: renamed session_token to runtime_token --- docs/content/Guides/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/Guides/setup.md b/docs/content/Guides/setup.md index 19d676a..81b401b 100644 --- a/docs/content/Guides/setup.md +++ b/docs/content/Guides/setup.md @@ -41,7 +41,7 @@ Below is a list of required environment variables for configuring Aquila: | `REDIS_URL` | The URL of the Redis instance Aquila connects to. | | | `BACKEND_URL` | The URL of the Sagittarius instance Aquila communicates with. | | | `FLOW_FALLBACK_PATH` | Path to the flow file used for static configuration in `Static` mode. | | -| `SESSION_TOKEN` | A session token for authenticated communication between Aquila and Sagittarius. | | +| `RUNTIME_TOKEN` | A runtime token for authenticated communication between Aquila and Sagittarius. | | ---