You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update architecture diagrams and guides for Valkey cache
Add Valkey to architecture diagrams in README.md and docs/architecture.md.
Add VALKEY_URL to configuration.md environment variables table.
Update deployment-guide.md service count (3→4) with Valkey description.
Update development-setup.md to mention Valkey startup and localhost:6379.
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Copy file name to clipboardExpand all lines: docs/architecture.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Overview
4
4
5
-
Clarive is a multi-tenant platform for managing, versioning, and AI-enhancing LLM prompts. A React frontend talks to a C# backend, backed by PostgreSQL. Everything ships as a single container.
5
+
Clarive is a multi-tenant platform for managing, versioning, and AI-enhancing LLM prompts. A React frontend talks to a C# backend, backed by PostgreSQL and Valkey. Everything ships as a single container with separate database and cache services.
6
6
7
7
## System Diagram
8
8
@@ -20,16 +20,16 @@ Clarive is a multi-tenant platform for managing, versioning, and AI-enhancing LL
Nginx serves the React build and proxies `/api/` to the .NET backend. Supervisor manages both processes inside the container.
32
+
Nginx serves the React build and proxies `/api/` to the .NET backend. Supervisor manages both processes inside the container. PostgreSQL and Valkey run as separate Docker services.
33
33
34
34
## Tech Stack
35
35
@@ -40,11 +40,12 @@ Nginx serves the React build and proxies `/api/` to the .NET backend. Supervisor
40
40
| Backend | C# ASP.NET Core 10 Minimal APIs |
41
41
| ORM | EF Core 10 (Npgsql) with 25 entity configurations |
42
42
| Database | PostgreSQL 16 with EF Core migrations |
> **Note:**`CORS_ORIGINS` is the only application setting that requires a container restart. Everything else can be changed at runtime through the dashboard.
0 commit comments