Skip to content

Basic repo for diagrams (Drawio/Mermaid text-representations)

License

Notifications You must be signed in to change notification settings

cwilson613/diagrams

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Diagrams

Various diagrams that I'd like to keep around for easy reference and re-use.

DrawIO (diagrams.net)

XML-based file format, simple JPEG/PNG/SVG/PDF export

Mermaid

Text-based diagram syntax that enables embedded diagrams to render alongside their surrounding document, such as the below diagram which is a text box:

graph TD
    A[Git Repository] -->|Code commit| B[CI Pipeline]
    B -->|Build & Test| C[Image Registry]
    C --> D[Deployment Pipeline]
    D -->|Deploy to Test Environment| E[Test Environment]
    D -->|Deploy to Prod Environment| F[Prod Environment]
    E --> G[Test Validation]
    G -->|Feedback| A
    F --> H[Monitoring & Logging]

    classDef git fill:#f9f,stroke:#333,stroke-width:4px;
    classDef ci fill:#bbf,stroke:#fff,stroke-width:4px;
    classDef registry fill:#fbf,stroke:#333,stroke-width:4px;
    classDef deployment fill:#ccf,stroke:#333,stroke-width:4px;
    classDef env fill:#efe,stroke:#393,stroke-width:4px;
    classDef monitoring fill:#ffc,stroke:#393,stroke-width:4px;

    class A git;
    class B ci;
    class C registry;
    class D deployment;
    class E,F env;
    class G monitoring;
    class H monitoring;
Loading

About

Basic repo for diagrams (Drawio/Mermaid text-representations)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages