Forked from vladholubiev/visualize-ms-arch-step-2.dot
Created
December 28, 2021 17:28
-
-
Save namuan/408b46c1cc9b5eb44d7b062d7c3ecf41 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph architecture { | |
rankdir=LR; | |
// Storage - #303F9F (dark blue) | |
node[fillcolor="#303F9F" style="filled" fontcolor="white"]; | |
database[label="DB"]; cache[label="Redis"]; | |
// Client-side Apps - #FFEB3B (yellow) | |
node[fillcolor="#FFEB3B" style="filled" fontcolor="black"]; | |
front_end[label="Front-end App"]; extension[label="Browser Extension"]; | |
// Microservices - #C8E6C9 (light green) | |
node[fillcolor="#C8E6C9" style="filled" fontcolor="black"]; | |
photos_ms[label="Photos MS"]; chats_ms[label="Chats MS"]; friends_ms[label="Friends MS"]; | |
// API Gateways - #FFCCBC (light orange) | |
node[fillcolor="#FFCCBC" style="filled" fontcolor="black"]; | |
auth_api[label="Auth API"]; my_app_api[label="Main API"]; | |
// 3rd-party APIs - #CFD8DC (light grey) | |
node[fillcolor="#CFD8DC" style="filled" fontcolor="black"]; | |
facebook_api[label="Facebook API"]; | |
subgraph client_side_apps { | |
front_end -> {auth_api, my_app_api}; | |
extension -> {auth_api, my_app_api}; | |
{rank=same; front_end, extension, auth_api}; | |
} | |
subgraph api_gateways { | |
my_app_api -> {photos_ms, chats_ms, friends_ms}; | |
} | |
subgraph microservices { | |
photos_ms -> {database}; | |
chats_ms -> {database, cache}; | |
friends_ms -> {database, facebook_api}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cat file.dot | docker container run --rm -i vladgolubev/dot2png > file.png