Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flow charts to show the architecture of Recipe.Report. #104

Open
jmg1138 opened this issue May 11, 2022 · 1 comment
Open

Flow charts to show the architecture of Recipe.Report. #104

jmg1138 opened this issue May 11, 2022 · 1 comment
Assignees

Comments

@jmg1138
Copy link
Member

jmg1138 commented May 11, 2022

No description provided.

@jmg1138 jmg1138 self-assigned this May 11, 2022
@jmg1138
Copy link
Member Author

jmg1138 commented May 11, 2022

Multi layered system architecture

flowchart TB
  subgraph CL["Clients"]
    subgraph webapplayer["Web App"]
    end
  end
  subgraph APIL["API"]
    direction LR
    ex["Express App"]
    subgraph routers["Route Handlers"]
      routes["Routes"] --- endpoints["Endpoints"]
      click routes routesCallback "Routers use the express.Router class to create route handlers."
    end
    ex --- routers
  end
  subgraph SL["Service Layer"]
    direction TB
    s["Application Services"]
    s --- uow["Unit of Work"]
    uow --- rep["Repositories"]
  end
  subgraph DL["Data Access Layer"]
    pg["PostgreSQL"]
  end
  subgraph DO["Business Domain"]
    dm["Domain Models"]
    dto["Domain Transfer Objects"]
  end
  CL --- APIL
  APIL --- SL
  SL --- DL
  SL --- DO
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant