-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.dot
34 lines (29 loc) · 1.02 KB
/
project.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
digraph {
graph [label="HACKER\n ",labelloc=t,fontsize=30,ranksep=1.4];
node [style=filled, fillcolor="#bbbbbb"];
rankdir=TB;
# Projects
":app" [shape=box, fillcolor="#baffc9"];
":core-compose" [fillcolor="#baffc9"];
":core-ui" [fillcolor="#baffc9"];
":data" [fillcolor="#baffc9"];
":domain" [fillcolor="#ffb3ba"];
":feature:auth" [fillcolor="#baffc9"];
":shared" [fillcolor="#baffc9"];
{rank = same; ":app";}
# Dependencies
":app" -> ":core-compose" [style=dotted]
":app" -> ":feature:auth" [style=dotted]
":app" -> ":shared" [style=dotted]
":app" -> ":core-ui" [style=dotted]
":app" -> ":domain" [style=dotted]
":app" -> ":data" [style=dotted]
":core-compose" -> ":shared" [style=dotted]
":core-ui" -> ":shared" [style=dotted]
":data" -> ":domain" [style=dotted]
":data" -> ":shared" [style=dotted]
":feature:auth" -> ":core-compose" [style=dotted]
":feature:auth" -> ":core-ui" [style=dotted]
":feature:auth" -> ":shared" [style=dotted]
":feature:auth" -> ":domain" [style=dotted]
}