Skip to content

Instantly share code, notes, and snippets.

@vladholubiev
Created February 22, 2017 23:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save vladholubiev/0e0a4317cfd81c5f792f4032d451fb3c to your computer and use it in GitHub Desktop.
Save vladholubiev/0e0a4317cfd81c5f792f4032d451fb3c to your computer and use it in GitHub Desktop.
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};
}
}
@vladholubiev
Copy link
Author

step-1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment