-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update mkdocs - use themes (dark vs. light) - update images and diagrams to render correctly based on the theme - move the mkdocs.yaml in the docs directory and restructure docs (like mutiny) - use pipenv and a Pipfile - intregrate docissimo macros
- Loading branch information
1 parent
d9387a6
commit c8de1a2
Showing
42 changed files
with
763 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,10 @@ jobs: | |
run: | | ||
git config --global user.name "SmallRye CI" | ||
git config --global user.email "[email protected]" | ||
cd docs | ||
sudo snap install yq | ||
pip install mkdocs-material | ||
pip install mkdocs-macros-plugin | ||
pip install mkdocs-build-plantuml-plugin | ||
pip install mike | ||
pip install | ||
cd .. | ||
- name: Build local artifacts | ||
run: mvn -B install -DskipTests | ||
- name: Render docs and publish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
mkdocs = "*" | ||
mkdocs-material = "*" | ||
mkdocs-macros-plugin = "*" | ||
mkdocs-build-plantuml-plugin = "*" | ||
mike = "*" | ||
|
||
[dev-packages] | ||
|
||
[requires] | ||
python_version = "3" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
!define BG_MAIN_COLOR #1A618C | ||
!define BG_SECONDARY_COLOR #616768 | ||
!define BG_PACKAGE_COLOR #7a209f | ||
!define BORDER_COLOR #EEEEEE | ||
!define FONT_COLOR #EEEEEE | ||
!define ARROW_COLOR #EEEEEE | ||
|
||
' include the general skinparams for both, light and dark | ||
' to overwrite with the given settings | ||
!include general.puml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
!define BORDER_THICKNESS 3 | ||
skinparam backgroundColor transparent | ||
|
||
skinparam classFontSize 30 | ||
|
||
skinparam Padding 4 | ||
skinparam RoundCorner 4 | ||
skinparam Shadowing false | ||
|
||
skinparam Default { | ||
FontColor FONT_COLOR | ||
FontSize 30 | ||
} | ||
|
||
skinparam class { | ||
BackgroundColor BG_MAIN_COLOR | ||
ArrowColor FONT_COLOR | ||
BorderColor FONT_COLOR | ||
FontSize 30 | ||
} | ||
|
||
skinparam Arrow { | ||
Color FONT_COLOR | ||
FontColor FONT_COLOR | ||
FontStyle Bold | ||
FontSize 30 | ||
} | ||
|
||
skinparam package { | ||
FontColor FONT_COLOR | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
} | ||
skinparam node { | ||
FontColor FONT_COLOR | ||
BackgroundColor BG_PACKAGE_COLOR | ||
BorderColor BORDER_COLOR | ||
} | ||
skinparam component { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
Style uml2 | ||
} | ||
|
||
skinparam database { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
|
||
skinparam cloud { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
|
||
skinparam collections { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
skinparam Control { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
skinparam Boundary { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
skinparam Entity { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
skinparam interface { | ||
BackgroundColor BG_MAIN_COLOR | ||
BorderColor BORDER_COLOR | ||
FontColor FONT_COLOR | ||
} | ||
skinparam SequenceParticipantBorderThickness 3 | ||
skinparam sequence { | ||
ParticipantBackgroundColor BG_MAIN_COLOR | ||
ParticipantBorderColor BORDER_COLOR | ||
ParticipantFontStyle normal | ||
ParticipantFontColor FONT_COLOR | ||
LifeLineBorderColor BORDER_COLOR | ||
LifeLineBackgroundColor BG_MAIN_COLOR | ||
ArrowColor FONT_COLOR | ||
ArrowBorderColor BORDER_COLOR | ||
ArrowFontColor FONT_COLOR | ||
ArrowThickness 3 | ||
ActorBackgroundColor BG_MAIN_COLOR | ||
ActorBorderColor BORDER_COLOR | ||
ActorFontColor FONT_COLOR | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
!define BG_MAIN_COLOR AliceBlue | ||
!define BG_SECONDARY_COLOR #B4BCBE | ||
!define BG_PACKAGE_COLOR #eeb291 | ||
!define BORDER_COLOR #444444 | ||
!define FONT_COLOR #444444 | ||
!define ARROW_COLOR DarkGrey | ||
|
||
|
||
' include the general skinparams for both, light and dark | ||
' to overwrite with the given settings | ||
!include general.puml |
14 changes: 1 addition & 13 deletions
14
docs/diagrams/sequence.puml → docs/docs/diagrams/sequence.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 1 addition & 14 deletions
15
docs/diagrams/srv_sequence.puml → docs/docs/diagrams/srv_sequence.puml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.