rusty-mermaid Gallery

25 diagram types — 297 diagrams rendered by rusty-mermaid

c4 (5)

c4_boundary
System Landscape Internal Systems External Admin [Manages system] CRM [Customer management] Billing [Payment processing] Email Service [SendGrid] Manages customers Triggers invoices Sends notifications [SMTP]
Source (.mmd)
C4Context
    title System Landscape
    Person(admin, "Admin", "Manages system")
    Boundary(b1, "Internal Systems") {
        System(crm, "CRM", "Customer management")
        System(billing, "Billing", "Payment processing")
    }
    Boundary(b2, "External") {
        System_Ext(email, "Email Service", "SendGrid")
    }
    Rel(admin, crm, "Manages customers")
    Rel(crm, billing, "Triggers invoices")
    Rel(crm, email, "Sends notifications", "SMTP")
c4_container
Container Diagram Banking System User [Interacts with system] Web App [Spring Boot] Serves web pages Database [PostgreSQL] Stores data API [Node.js] REST API Visits [HTTPS] Calls [JSON] Reads/Writes [SQL]
Source (.mmd)
C4Container
  title Container Diagram
  Person(user, "User", "Interacts with system")
  System_Boundary(bank, "Banking System") {
    Container(web, "Web App", "Spring Boot", "Serves web pages")
    ContainerDb(db, "Database", "PostgreSQL", "Stores data")
    Container(api, "API", "Node.js", "REST API")
  }
  Rel(user, web, "Visits", "HTTPS")
  Rel(web, api, "Calls", "JSON")
  Rel(api, db, "Reads/Writes", "SQL")
c4_context
Internet Banking System Banking Customer [A customer of the bank] Internet Banking System [Allows customers to view accounts] E-mail System [Sends emails to customers] Core Banking System [Stores account data] Uses [HTTPS] Sends emails [SMTP] Gets account data [API]
Source (.mmd)
C4Context
  title Internet Banking System
  Person(customer, "Banking Customer", "A customer of the bank")
  System(banking, "Internet Banking System", "Allows customers to view accounts")
  System_Ext(email, "E-mail System", "Sends emails to customers")
  System_Ext(core, "Core Banking System", "Stores account data")
  Rel(customer, banking, "Uses", "HTTPS")
  Rel(banking, email, "Sends emails", "SMTP")
  Rel(banking, core, "Gets account data", "API")
c4_dynamic
API Request Flow Mobile User [Uses mobile app] Mobile App [React Native] API Gateway [Node.js] Routes requests Database [PostgreSQL] Stores data Opens [HTTPS] API calls [REST/JSON] Reads/writes [SQL]
Source (.mmd)
C4Dynamic
    title API Request Flow
    Person(user, "Mobile User", "Uses mobile app")
    Container(app, "Mobile App", "React Native")
    Container(api, "API Gateway", "Node.js", "Routes requests")
    ContainerDb(db, "Database", "PostgreSQL", "Stores data")
    Rel(user, app, "Opens", "HTTPS")
    Rel(app, api, "API calls", "REST/JSON")
    Rel(api, db, "Reads/writes", "SQL")
c4_single_element
My Application [A simple app]
Source (.mmd)
C4Context
    System(app, "My Application", "A simple app")