Skip to content

Instantly share code, notes, and snippets.

@cchacin
Created December 5, 2017 09:42
Show Gist options
  • Save cchacin/6bddbe7afdee855f7105a27fb3c25d30 to your computer and use it in GitHub Desktop.
Save cchacin/6bddbe7afdee855f7105a27fb3c25d30 to your computer and use it in GitHub Desktop.
PlantUML example (Napkin style)
@startuml
skinparam handwritten true
skinparam monochrome true
skinparam packageStyle rect
skinparam defaultFontName FG Virgil
skinparam shadowing false
package "Some Group" {
HTTP - [First Component]
[Another Component]
}
node "Other Groups" {
FTP - [Second Component]
[First Component] --> FTP
}
cloud {
[Example 1]
}
database "MySql" {
folder "This is my folder" {
[Folder 3]
}
frame "Foo" {
[Frame 4]
}
}
[Another Component] --> [Example 1]
[Example 1] --> [Folder 3]
[Folder 3] --> [Frame 4]
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment