Skip to content

Instantly share code, notes, and snippets.

@vedcraft
Last active January 9, 2022 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vedcraft/7e6ef542fc96b8d81fb6bbe3f01193c2 to your computer and use it in GitHub Desktop.
Save vedcraft/7e6ef542fc96b8d81fb6bbe3f01193c2 to your computer and use it in GitHub Desktop.
@startuml
!include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Context.puml
' uncomment the following line and comment the first to use locally
' !include C4_Context.puml
LAYOUT_WITH_LEGEND()
title System Context diagram for a Blogging Website
Person(visitor, "Blog Visitor", "A software architect visiting the blog site")
System(blogging_system, "CMS System", "Allows visitors to view the published blogs as per their area of interests.")
System_Ext(newsletter_system, "Newsletter", "The system managing generation of a newsletter on need basis.")
System_Ext(webhost, "Web Hosting System", "Hosts and stores all the assets related to blogs")
Rel(visitor, blogging_system, "Uses")
Rel_Back(visitor, newsletter_system, "Sends e-mails to")
Rel_Neighbor(blogging_system, newsletter_system, "Generates emails")
Rel(blogging_system, webhost, "Uses")
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment