-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🏗️(docs) init architecture documentation #536
base: main
Are you sure you want to change the base?
Conversation
Nice ! Yes it is almost that ! graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
|
docs/architecture.md
Outdated
User -- HTTP --> Front("Frontend (NextJS)") | ||
Front -- REST API --> Back("Backend (Django)") | ||
Front <-- WebSocket --> Yserver("Microservice Yjs (Express)") | ||
Back <-- WebSocket --> Yserver | ||
Back -- REST API --> Yserver | ||
Back --> DB("Database (PostgreSQL)") | ||
Back <--> Celery --> DB | ||
Front ----> S3 | ||
Front -- OIDC ---> Keycloak | ||
Keycloak -- OIDC --> ProConnect | ||
Crowdin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The archi is more like that.
User -- HTTP --> Front("Frontend (NextJS)") | |
Front -- REST API --> Back("Backend (Django)") | |
Front <-- WebSocket --> Yserver("Microservice Yjs (Express)") | |
Back <-- WebSocket --> Yserver | |
Back -- REST API --> Yserver | |
Back --> DB("Database (PostgreSQL)") | |
Back <--> Celery --> DB | |
Front ----> S3 | |
Front -- OIDC ---> Keycloak | |
Keycloak -- OIDC --> ProConnect | |
Crowdin | |
User -- HTTP --> Front("Frontend (NextJS SPA)") | |
Front -- REST API --> Back("Backend (Django)") | |
Front <-- WebSocket --> Yserver("Microservice Yjs (Express)") | |
Front -- OIDC --> Back -- OIDC ---> Keycloak | |
Back -- REST API --> Yserver | |
Back --> DB("Database (PostgreSQL)") | |
Back <--> Celery --> DB | |
Back ----> S3("Minio (S3)") | |
Keycloak -- OIDC --> ProConnect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
About the ADR, it is a nice, maybe in another PR, we need a bit of time to work on it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, I've updated the PR with your corrections and removed the ADR part
61fb45b
to
e05171f
Compare
Purpose
Provide a better understanding of how doc was built and the current status of the architecture