Architecture

Monolithic Architecture

Description

A single tiered software application in which the user interface and data access code are combined into a single program from a single platform.

Where to use

  • Small applications.
  • \n
  • Early stage startups.

Real World Example

A standard Ruby on Rails or Django app where everything is in one repo and deployed as one unit.

Code Example

class MonolithicArchitecture:\n    def __init__(self):\n        pass\n\n    def execute(self):\n        print('Executing Monolithic Architecture')