From 86e95befc8549ec3d3fae74cdb84cef7e40c1328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Mon, 23 Jun 2025 15:57:59 +0300 Subject: [PATCH] Add link to the modular tutorial --- docs/en/framework/architecture/modularity/basics.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/en/framework/architecture/modularity/basics.md b/docs/en/framework/architecture/modularity/basics.md index 2b3aaad214..f7a69bbe7d 100644 --- a/docs/en/framework/architecture/modularity/basics.md +++ b/docs/en/framework/architecture/modularity/basics.md @@ -2,10 +2,11 @@ ABP was designed to support to build fully modular applications and systems where every module may have entities, services, database integration, APIs, UI components and so on; -* This document introduces the basics of the module system. -* [Module development best practice guide](../best-practices) explains some **best practices** to develop **re-usable application modules** based on **DDD** principles and layers. A module designed based on this guide will be **database independent** and can be deployed as a **microservice** if needed. -* [Pre-built application modules](../../../modules) are **ready to use** in any kind of application. -* [Module startup template](../../../solution-templates/application-module) is a jump start way to **create a new module**. +* This document introduces the **basics** of the module system. +* The [modular monolith application development tutorial](../../../tutorials/modular-crm/index.md) explains and demonstrates how to build **modular monolith applications** with ABP. +* [Pre-built application modules](../../../modules/index.md) are **ready to use** in any kind of application. +* [Module startup template](../../../solution-templates/application-module/index.md) is a jump start way to **create a new reusable application module**. +* [Module development best practice guide](../best-practices/index.md) explains some **best practices** to develop **re-usable application modules** based on **DDD** principles and layers. A module designed based on this guide will be **database independent** and can be deployed as a **microservice** if needed. * [ABP CLI](../../../cli/index.md) has commands to support modular development. * All other framework features are compatible to the modularity system. @@ -189,4 +190,5 @@ There are **two types of modules.** They don't have any structural difference bu - **Application modules**: These modules implement **specific application/business functionalities** like blogging, document management, identity management, tenant management... etc. They generally have their own entities, services, APIs and UI components. See [pre-built application modules](../../../modules). ## See Also -* [Video tutorial](https://abp.io/video-courses/essentials/modularity) +* [Modular monolith application development tutorial](../../../tutorials/modular-crm/index.md) +* [Video tutorial for basic modularity](https://abp.io/video-courses/essentials/modularity)