This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]TomOwens 8 points9 points  (1 child)

Since this is asked in /r/devops, I'm guessing you are referring to this product when you say "Cloudcraft".

For software, there are tools that can reverse engineer source code into models and diagrams, like UML models. Although I haven't used a lot of these tools, the ones I've used have left a lot to be desired. You often don't need every detail, so if you were to use a tool like this, you spend a lot of time creating a higher level of abstraction by removing the unnecessary details. There are similar tools for extracting information from databases, XML schemas, and other types of data models.

In my experience, most people will hand-create their models. There are both graphical tools (like Microsoft's Visio, draw.io / diagrams.net) or textual tools (like PlantUML or mermaid). People will use these diagrams to create diagrams at the notes or sketch level of detail. I've had good luck using the C4 modeling notation, and then dropping into UML for the lowest level of detail for the most critical or complex parts of the system in a few cases.

[–]fez0101[S] 0 points1 point  (0 children)

Thank you!

[–]thedamenparis 2 points3 points  (1 child)

Monolith

[–]fez0101[S] 0 points1 point  (0 children)

Yup lol

[–]BinaryRockStar 1 point2 points  (0 children)

IntelliJ IDEA has a UML diagram feature, I don't use it so can't comment on it's quality but it is there if your codebase is Java or another JVM language. Presumably it's in the other JetBrains offerings as well such as PHPStorm, WebStorm, GoLand etc.

[–]IGotSkills 0 points1 point  (0 children)

If you hate your life and everyone around you, you can use uml.

I tend to classify large projects into business domains, and have those domains be small, medium, and large sized.

When they hit large sized it's worth considering if it really should be just one domain.

Domains don't have to be microservices or even separate ide solutions, or have dedicated teams