-
Notifications
You must be signed in to change notification settings - Fork 340
🏗️(docs) init architecture documentation #536
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
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
47ac554
to
39fe1c4
Compare
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.
Nice, thank you for this contribution.
39fe1c4
to
94ef215
Compare
- Add docs about architecture - Add ADR about the CRDT choice
94ef215
to
46d32d8
Compare
Purpose
Provide a better understanding of how doc was built and the current status of the architecture