docs: add documentation for Locking Module (#11824)

* add locking docs

* fix main navbar

* added implementation example links

* generate refs

* update architecture

* fix vale error
This commit is contained in:
Shahed Nasser
2025-03-13 12:20:24 +02:00
committed by GitHub
parent 5cf0bf4d93
commit 28b0d08591
94 changed files with 15932 additions and 10857 deletions
@@ -10,7 +10,7 @@ export const architecturalModulesSidebar = [
},
{
type: "category",
title: "Cache Modules",
title: "Cache Module",
initialOpen: true,
children: [
{
@@ -19,14 +19,20 @@ export const architecturalModulesSidebar = [
title: "Overview",
},
{
type: "link",
path: "/architectural-modules/cache/in-memory",
title: "In-Memory",
},
{
type: "link",
path: "/architectural-modules/cache/redis",
title: "Redis",
type: "sub-category",
title: "Modules",
children: [
{
type: "link",
path: "/architectural-modules/cache/in-memory",
title: "In-Memory",
},
{
type: "link",
path: "/architectural-modules/cache/redis",
title: "Redis",
},
],
},
{
type: "sub-category",
@@ -43,7 +49,7 @@ export const architecturalModulesSidebar = [
},
{
type: "category",
title: "Event Modules",
title: "Event Module",
initialOpen: true,
children: [
{
@@ -52,14 +58,20 @@ export const architecturalModulesSidebar = [
title: "Overview",
},
{
type: "link",
path: "/architectural-modules/event/local",
title: "Local",
},
{
type: "link",
path: "/architectural-modules/event/redis",
title: "Redis",
type: "sub-category",
title: "Modules",
children: [
{
type: "link",
path: "/architectural-modules/event/local",
title: "Local",
},
{
type: "link",
path: "/architectural-modules/event/redis",
title: "Redis",
},
],
},
{
type: "sub-category",
@@ -76,7 +88,7 @@ export const architecturalModulesSidebar = [
},
{
type: "category",
title: "File Module Providers",
title: "File Module",
initialOpen: true,
children: [
{
@@ -85,14 +97,20 @@ export const architecturalModulesSidebar = [
title: "Overview",
},
{
type: "link",
path: "/architectural-modules/file/local",
title: "Local",
},
{
type: "link",
path: "/architectural-modules/file/s3",
title: "AWS S3 (and Compatible APIs)",
type: "sub-category",
title: "Providers",
children: [
{
type: "link",
path: "/architectural-modules/file/local",
title: "Local",
},
{
type: "link",
path: "/architectural-modules/file/s3",
title: "AWS S3 (and Compatible APIs)",
},
],
},
{
type: "sub-category",
@@ -109,7 +127,51 @@ export const architecturalModulesSidebar = [
},
{
type: "category",
title: "Notification Module Providers",
title: "Locking Module",
initialOpen: true,
children: [
{
type: "link",
path: "/architectural-modules/locking",
title: "Overview",
},
{
type: "sub-category",
title: "Providers",
children: [
{
type: "link",
path: "/architectural-modules/locking/redis",
title: "Redis",
},
{
type: "link",
path: "/architectural-modules/locking/postgres",
title: "PostgreSQL",
},
],
},
{
type: "sub-category",
title: "Guides",
children: [
{
type: "link",
path: "/references/locking-module-provider",
title: "Create Locking Provider",
},
{
type: "link",
path: "/references/locking-service",
title: "Use Locking Module",
},
],
},
],
},
{
type: "category",
title: "Notification Module",
initialOpen: true,
children: [
{
@@ -118,14 +180,20 @@ export const architecturalModulesSidebar = [
title: "Overview",
},
{
type: "link",
path: "/architectural-modules/notification/local",
title: "Local",
},
{
type: "link",
path: "/architectural-modules/notification/sendgrid",
title: "SendGrid",
type: "sub-category",
title: "Providers",
children: [
{
type: "link",
path: "/architectural-modules/notification/local",
title: "Local",
},
{
type: "link",
path: "/architectural-modules/notification/sendgrid",
title: "SendGrid",
},
],
},
{
type: "sub-category",
@@ -137,7 +205,7 @@ export const architecturalModulesSidebar = [
title: "Create Notification Provider",
},
{
type: "link",
type: "ref",
path: "/integrations/guides/resend",
title: "Integrate Resend",
},
@@ -152,7 +220,7 @@ export const architecturalModulesSidebar = [
},
{
type: "category",
title: "Workflow Engine Modules",
title: "Workflow Engine Module",
initialOpen: true,
children: [
{
@@ -161,14 +229,20 @@ export const architecturalModulesSidebar = [
title: "Overview",
},
{
type: "link",
path: "/architectural-modules/workflow-engine/in-memory",
title: "In-Memory",
},
{
type: "link",
path: "/architectural-modules/workflow-engine/redis",
title: "Redis",
type: "sub-category",
title: "Modules",
children: [
{
type: "link",
path: "/architectural-modules/workflow-engine/in-memory",
title: "In-Memory",
},
{
type: "link",
path: "/architectural-modules/workflow-engine/redis",
title: "Redis",
},
],
},
],
},