Skip to content

Instantly share code, notes, and snippets.

@arvearve
Created November 28, 2018 11:05
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 arvearve/153c3dabc442f772c7df8298cabd9670 to your computer and use it in GitHub Desktop.
Save arvearve/153c3dabc442f772c7df8298cabd9670 to your computer and use it in GitHub Desktop.
digraph dependencies {
Log -> "AWS DB"
"AWS DB" -> "Migrations" -> Docker;
Log -> "Users resource access" -> Auth;
Docker -> "Measures resource access" -> "Measures manager";
"Actuator resource access" -> "Actuator Manager";
Docker -> "Customer resource access" -> "Measures manager";
"Prices resource access" -> "Consumption Engine";
"Customer resource access" -> "Consumption Engine";
"Sensors resource access" -> "Consumption Engine";
"AWS PUB/SUB" -> "Notification Manager";
"Consumption Engine" -> "Notification Manager";
"Measures Manager" -> "Measures Admin Webapp";
"Measures Manager" -> "Main WebApp";
"Actuator Manager" -> "Main WebApp";
"Notification Manager" -> "Main WebApp";
"Consumption Engine" -> "Main WebApp";
"Notification Manager" -> "Cron";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment