Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web-et-numerique
web-et-numerique-internet
data.grandlyon.com
web-portal
documentation
Commits
f1743725
Commit
f1743725
authored
5 years ago
by
ddamiron
Browse files
Options
Downloads
Patches
Plain Diff
add plantuml compatibility
parent
7283eabf
No related branches found
Branches containing commit
No related tags found
1 merge request
!5
add plantuml compatibility
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
docs/architecture/uml-test.md
+4
-0
4 additions, 0 deletions
docs/architecture/uml-test.md
docs/miscellaneous/webapp-auth.md
+71
-0
71 additions, 0 deletions
docs/miscellaneous/webapp-auth.md
mkdocs.yml
+7
-1
7 additions, 1 deletion
mkdocs.yml
with
83 additions
and
2 deletions
Dockerfile
+
1
−
1
View file @
f1743725
...
...
@@ -7,7 +7,7 @@ WORKDIR /app
# add the current directory to the container as /app
ADD
. /docs
# Perform build and cleanup artifacts
RUN
pip
install
mkdocs
&&
pip
install
mkdocs-material
RUN
pip
install
mkdocs
&&
pip
install
mkdocs-material
&&
pip
install
plantuml-markdown
# Set working directory
WORKDIR
/docs
...
...
This diff is collapsed.
Click to expand it.
docs/architecture/uml-test.md
0 → 100644
+
4
−
0
View file @
f1743725
```
plantuml format="png" classes="uml myDiagram" alt="My super diagram placeholder" title="My super diagram" width="300px" height="300px"
Goofy -> MickeyMouse: calls
Goofy <-- MickeyMouse: responds
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
docs/miscellaneous/webapp-auth.md
+
71
−
0
View file @
f1743725
...
...
@@ -63,6 +63,42 @@ group Authentication with OIDC providers
front <-- auth : [302] redirection to the appropriate url
end
end
```
```
plantuml
!define BLACK #333745
!define RED #d5232a
!define GREEN #37A77C
' Base Setting
skinparam BackgroundColor transparent
skinparam Sequence {
ArrowThickness 1
ArrowColor RED
LifeLineBorderColor GREEN
ParticipantBorderThickness 1
}
skinparam Participant {
BackgroundColor #FFFFFF
BorderColor BLACK
FontColor BLACK
}
skinparam note {
BackgroundColor #FFFFFF
BorderColor BLACK
FontColor BLACK
}
participant "Front" as front
participant "Authentication Service" as auth
participant "Middleware Legacy Auth" as middle
participant "Legacy Auth (Neogeo)" as django
participant "Email Service" as email
participant "Kong" as kong
participant "OIDC Server" as oidc
group Authentication with Django Server
group Get Public Key
...
...
@@ -163,7 +199,42 @@ group Authentication with Django Server
front <-- middle : void
end
end
```
```
plantuml
!define BLACK #333745
!define RED #d5232a
!define GREEN #37A77C
' Base Setting
skinparam BackgroundColor transparent
skinparam Sequence {
ArrowThickness 1
ArrowColor RED
LifeLineBorderColor GREEN
ParticipantBorderThickness 1
}
skinparam Participant {
BackgroundColor #FFFFFF
BorderColor BLACK
FontColor BLACK
}
skinparam note {
BackgroundColor #FFFFFF
BorderColor BLACK
FontColor BLACK
}
participant "Front" as front
participant "Authentication Service" as auth
participant "Middleware Legacy Auth" as middle
participant "Legacy Auth (Neogeo)" as django
participant "Email Service" as email
participant "Kong" as kong
participant "OIDC Server" as oidc
group Authorization with Django server
group List User resources
front -> middle : <b>POST</b> /user/resources
...
...
This diff is collapsed.
Click to expand it.
mkdocs.yml
+
7
−
1
View file @
f1743725
...
...
@@ -8,6 +8,10 @@ theme:
primary
:
'
grey'
accent
:
'
amber'
markdown_extensions
:
-
plantuml_markdown
:
server
:
http://www.plantuml.com/plantuml
nav
:
-
Home
:
index.md
-
Architecture Guide
:
...
...
@@ -23,7 +27,9 @@ nav:
-
resources
:
architecture/services/resources.md
-
Elasticsearch
:
-
Indexer
:
architecture/services/elasticsearch/indexer.md
-
UML Diagrams
:
-
Test
:
architecture/uml-test.md
-
Webapp-auth
:
miscellaneous/webapp-auth.md
-
About
:
-
Gitflow
:
miscellaneous/gitflow-ci-cd.md
-
VSCode
:
miscellaneous/vscode-settings.md
-
Webapp
:
miscellaneous/webapp-auth.md
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment