From 30681c82bdecbca2cf8b1116f489629d80e948b3 Mon Sep 17 00:00:00 2001 From: Kyle Thorpe Date: Fri, 4 Feb 2022 01:14:08 -0500 Subject: [PATCH] Add content for Monolithic applications (#1102) --- .../115-architectural-patterns/100-monolithic-apps.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/115-architectural-patterns/100-monolithic-apps.md b/content/roadmaps/101-backend/content/115-architectural-patterns/100-monolithic-apps.md index f45912489..ba0dab670 100644 --- a/content/roadmaps/101-backend/content/115-architectural-patterns/100-monolithic-apps.md +++ b/content/roadmaps/101-backend/content/115-architectural-patterns/100-monolithic-apps.md @@ -1 +1,7 @@ -# Monolithic apps \ No newline at end of file +# Monolithic Apps + +Monolithic architecture is a pattern in which an application handles requests, executes business logic, interacts with the database, and creates the HTML for the front end. In simpler terms, this one application does many things. It's inner components are highly coupled and deployed as one unit. + +Free Content +Pattern: Monolithic Architecture +Monolithic Architecture - Advantages & Disadvantages