Forked from vladholubiev/visualize-ms-arch-step-1.dot
Created
December 7, 2017 14:01
-
-
Save refactor8/e83bf50f1806cf4b043c9745d3e9aa54 to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
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