Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Doc section 7 #74

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 31 additions & 26 deletions docs/src/07_deployment_view.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,39 +56,44 @@ Describe (usually in a combination of diagrams, tables, and text):
For multiple environments or alternative deployments please copy and adapt this section of arc42 for all relevant environments.
****

_**<Overview Diagram>**_
[plantuml, "infrastructure-level1", png]
----
node AzureServer{
node DockerContainer {
component WebApp
}
}

Motivation::

_<explanation in text form>_

Quality and/or Performance Features::
node UserDevice {
node WebBrowser {
component WebAppImage
}
}

_<explanation in text form>_

Mapping of Building Blocks to Infrastructure::
_<description of the mapping>_
Actor User


=== Infrastructure Level 2
WebApp -d-> WebAppImage : "shows on user device"
WebAppImage <-l- User
----

[role="arc42help"]
****
Here you can include the internal structure of (some) infrastructure elements from level 1.

Please copy the structure from level 1 for each selected element.
****

==== _<Infrastructure Element 1>_

_<diagram + explanation>_
Motivation::

==== _<Infrastructure Element 2>_
In the development stage the application will be running on each developer machine using Docker containers. However, in the production stage the application will be running on a Docker environment hosted on Azure, which will be available 24 hours a day. Our goal is to learn how to use docker properly on a server open 24 hours a day.

_<diagram + explanation>_
Quality and/or Performance Features::

...
We have not tested the application performance so we can't analyze it yet

==== _<Infrastructure Element n>_
Mapping of Building Blocks to Infrastructure::

_<diagram + explanation>_
[options="header",cols="1,3"]
|===
| Element | Description

| *_WebApp_*
| It is the frontend of our application. It runs the application.

| *_Client Device_*
| It is the device of the user. Will show us the execution of the webapp.
|===
Loading