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
-**[Pegboard](packages/edge/services/pegboard/)**: Actor orchestrator
50
-
-**[Guard](packages/edge/infra/guard/)**: Proxy for routing traffic to Rivet Actors
49
+
-**[Pegboard](packages/services/pegboard/)**: Actor orchestrator
50
+
-**[Guard](packages/core/guard/)**: Proxy for routing traffic to Rivet Actors
51
51
-**[Chirp](packages/common/chirp-workflow/)**: Core workflow engine that powers Rivet
52
52
53
53
## Get Started
@@ -60,7 +60,7 @@ Get started with Rivet by following a quickstart guide:
60
60
61
61
## Features
62
62
63
-
Rivet Actors provide everything you need to build fast, scalable, and real-time applications without the complexity.
63
+
Rivet Actors are a primitive of RivetKit provide everything you need to build fast, scalable, and real-time applications without the complexity. Rivet Engine is the core of self-hosting and is used for orchestrating actors at scale.
64
64
65
65
-**Long-Lived, Stateful Compute**: Like AWS Lambda but with memory and no timeouts
66
66
-**Blazing-Fast Reads & Writes**: State stored on same machine as compute
@@ -69,6 +69,13 @@ Rivet Actors provide everything you need to build fast, scalable, and real-time
69
69
-**Infinitely Scalable**: Auto-scale from zero to millions without configuration
70
70
-**Fault Tolerant**: Automatic error handling and recovery built-in
71
71
72
+
## BYO DB (Bring Your Own Database)
73
+
The Rivet Engine supports:
74
+
75
+
-**PostgreSQL**: For production deployments
76
+
-**FoundationDB**: For enterprise-scale distributed systems
77
+
-**Filesystem**: For single-node deployments
78
+
72
79
## Examples
73
80
74
81
- AI Agent — [GitHub](https://github.com/rivet-gg/rivetkit/tree/main/examples/ai-agent) · [StackBlitz](https://stackblitz.com/github/rivet-gg/rivetkit/tree/main/examples/ai-agent)
Copy file name to clipboardExpand all lines: site/scripts/generateReadme.mjs
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,21 @@ const RIVET_QUICKSTART = `Get started with Rivet by following a quickstart guide
18
18
// Content chunks
19
19
constRIVET_FEATURES_CONTENT=`## Features
20
20
21
-
Rivet Actors provide everything you need to build fast, scalable, and real-time applications without the complexity.
21
+
Rivet Actors are a primitive of RivetKit provide everything you need to build fast, scalable, and real-time applications without the complexity. Rivet Engine is the core of self-hosting and is used for orchestrating actors at scale.
22
22
23
23
- **Long-Lived, Stateful Compute**: Like AWS Lambda but with memory and no timeouts
24
24
- **Blazing-Fast Reads & Writes**: State stored on same machine as compute
25
25
- **Realtime, Made Simple**: Built-in WebSockets and SSE support
26
26
- **Store Data Near Your Users**: Deploy to the edge for low-latency access
27
27
- **Infinitely Scalable**: Auto-scale from zero to millions without configuration
28
-
- **Fault Tolerant**: Automatic error handling and recovery built-in`;
28
+
- **Fault Tolerant**: Automatic error handling and recovery built-in
29
+
30
+
## BYO DB (Bring Your Own Database)
31
+
The Rivet Engine supports:
32
+
33
+
- **PostgreSQL**: For production deployments
34
+
- **FoundationDB**: For enterprise-scale distributed systems
0 commit comments