From fd7e7f5a2c7e328acb0a41f71e5f9e5cd4c88353 Mon Sep 17 00:00:00 2001 From: Radin Cerny <33064130+rackycz@users.noreply.github.com> Date: Wed, 1 Apr 2026 21:03:27 +0200 Subject: [PATCH] Update demo-apps.md Added links to 3 other official apps --- src/guide/start/demo-apps.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/guide/start/demo-apps.md b/src/guide/start/demo-apps.md index 53749cc4..9adcaab4 100644 --- a/src/guide/start/demo-apps.md +++ b/src/guide/start/demo-apps.md @@ -14,3 +14,15 @@ A diary application built using the vertical slices architecture pattern. In this approach, each feature is implemented end-to-end rather than being split across horizontal layers, making it easier to add or modify features independently. +**[WEB application template](https://github.com/yiisoft/app)** + +A simple web application that shows how to render a view and define the main layout. +Main menu was not implemented, but contains one CLI command that prints a text. + +**[API application template](https://github.com/yiisoft/app-api)** + +An API with one endoint returning the app name and version, plus one CLI command that prints a text. + +**[CONSOLE application template](https://github.com/yiisoft/app-console)** + +Implements a single CLI command that prints a provided text.