Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagenone
workspace {

    model {
        user = person "Spiner"    
        dikki = softwareSystem "Dikki" "Repartidores" "Mobile App" {
            monolithicApp = container "monolitic backend"
            service1 = container "service 1"
            service2 = container "service 2"
            service3 = container "service 3"
            mongoDB = container "MongoDB" "Stores the user preferences" "MongoDB Atlas" "Database"
        }
        email = softwaresystem "E-mail System" "Microsoft Exchange" "Existing System"
        ciam = softwareSystem "CIAM" "" "Existing System"
        checkout = softwareSystem "CheckOut" "" "Existing System"
        

        user -> dikki "Uses"
        dikki -> ciam "authentify user"
        dikki -> checkout "process payment"
        dikki -> email "Sends e-mail using"
        email -> user "Sends e-mails to"
        monolithicApp -> mongoDB "Reads from and writes to"
        user -> monolithicApp "Info"
    }

    views {
        
        systemContext dikki "SystemContext" {
            include *
            
            autolayout lr
        }

        container dikki "Containers" {
            include *
            
            /*
            animation {
                customer mainframe email
                webApplication
                singlePageApplication
                mobileApp
                apiApplication
                database
            }
            */
            autoLayout
        }

        /*
        container softwareSystem {
            include *
            autolayout lr
        }
        ß*/
        theme default

        styles {
            element "Person" {
                background #8533FF
                fontSize 22
                shape Person
            }
            element "Database" {
                shape Cylinder
            }
            element "Mobile App" {
                shape MobileDevicePortrait
            }
            element "Existing System" {
                background #999999
                color #ffffff
            }
        }
    }

}

Arquitectura AWS

...

languagenone

...

...