-
Notifications
You must be signed in to change notification settings - Fork 2
docs: c4 architecture diagrams #7
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -140,6 +140,15 @@ docs/website/node_modules/ | |||||
| # package-lock.json is ignored because we use pnpm exclusively (pnpm-lock.yaml is committed) | ||||||
| docs/website/package-lock.json | ||||||
|
|
||||||
| # Web Apps (Astro, Vite, etc.) | ||||||
| # Astro cache/build directories | ||||||
| **/.astro/ | ||||||
| clients/web/apps/**/dist/ | ||||||
| clients/web/apps/**/node_modules/ | ||||||
|
|
||||||
| # Symlinks auto-generados por Gradle | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inconsistent comment language. This comment is in Spanish while the rest of the file uses English. Consider aligning for consistency: Proposed fix-# Symlinks auto-generados por Gradle
+# Symlinks auto-generated by Gradle📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| /docs | ||||||
|
|
||||||
| # Spotless Prettier Node Modules (auto-generated by build) | ||||||
| build/spotless-prettier-node-modules-*/ | ||||||
| build/spotless-prettier-node-modules-*/node_modules/ | ||||||
|
|
||||||
This file was deleted.
This file was deleted.
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.
🧹 Nitpick | 🔵 Trivial
Redundant pattern: already covered by
**/node_modules/on line 92.The global
**/node_modules/pattern already matches allnode_modules/directories at any depth, making this more specific pattern unnecessary.🤖 Prompt for AI Agents