From 9cbf28399fc64ac063fcec476ed8f61a7d1b6bb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Wed, 1 Jun 2022 16:17:55 +0300 Subject: [PATCH] Added document: Todo/Overall.md --- docs/en/Tutorials/Todo/Overall.md | 14 ++++++++++++++ docs/en/docs-nav.json | 12 +++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 docs/en/Tutorials/Todo/Overall.md diff --git a/docs/en/Tutorials/Todo/Overall.md b/docs/en/Tutorials/Todo/Overall.md new file mode 100644 index 0000000000..66ff0d54e3 --- /dev/null +++ b/docs/en/Tutorials/Todo/Overall.md @@ -0,0 +1,14 @@ +# Quick Start: Overall + +**Welcome to the ABP Framework**. This is a single-part, quick-start tutorial to build a simple application. Start with this tutorial if you want to quickly understand how ABP Framework works. + +## Select the Solution Architecture + +This tutorial has multiple versions. Please select the one best fits for you: + +* **[Single-Layer Solution](Single-Layer/Index.md)**: Creates a single-project solution. Recommended for building an application with a **simpler and easy to understand** architecture. +* **[Layered Solution Architecture](Index.md)**: A fully layered (multiple projects) solution based on [Domain Driven Design](../../Domain-Driven-Design.md) practices. Recommended for long-term projects that need a **maintainable and extensible** codebase. + +## See Also + +* Check the [Web Application Development Tutorial](../../Part-1.md) to see a real-life web application development in a layered architecture. diff --git a/docs/en/docs-nav.json b/docs/en/docs-nav.json index c0151e4e9c..070d390ff5 100644 --- a/docs/en/docs-nav.json +++ b/docs/en/docs-nav.json @@ -2,7 +2,17 @@ "items": [ { "text": "Quick Start", - "path": "Tutorials/Todo/Index.md" + "path": "Tutorials/Todo/Overall.md", + "items": [ + { + "text": "With single-layer solution", + "path": "Tutorials/Todo/Single-Layer/Index.md" + }, + { + "text": "With layered architecture", + "path": "Tutorials/Todo/Index.md" + } + ] }, { "text": "Getting Started",