Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,360 changes: 410 additions & 950 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ src/
mdx/ "
pages/ MDX & JSX content to serve as pages
styles/ Static stylesheets (seldom used)
_redirects https://developers.cloudflare.com/pages/platform/redirects/
```

## Developing
Expand Down
20 changes: 6 additions & 14 deletions website/public/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@

Rivet is a library for long-lived processes with durable state, realtime, and scalability. It is easily self-hostable and works with your infrastructure.

## Libraries
# Quickstart

Long-lived processes with durable state, realtime, and hibernation
Get started with Rivet in minutes. Choose your preferred framework or runtime to begin building with actors.

## Use Cases
Set up actors with Node.js, Bun, and web frameworks

))}
Build real-time React applications with actors

## Deploy Options
Build server-rendered Next.js experiences backed by actors

## Integrations

))}

## Support

Chat with the community and get realtime help from Rivet engineers

File bugs or request features directly in our tracker
Deploy actors on Cloudflare Workers with zero infrastructure
27 changes: 8 additions & 19 deletions website/public/llms-full.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion website/public/llms.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion website/src/components/docs/Hosting.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions website/src/content/docs/api/index.mdx

This file was deleted.

23 changes: 23 additions & 0 deletions website/src/content/docs/connect/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { deployGroups } from "@/data/deploy/shared";

# Deploy

Rivet supports deployment to a wide range of platforms, from serverless functions to self-hosted infrastructure.

{deployGroups.map((group) => (
<section key={group.title}>
<h2>{group.title}</h2>
<CardGroup>
{group.items.map((option) => (
<Card
key={option.href}
title={option.title}
href={option.href}
icon={option.icon}
>
{option.description}
</Card>
))}
</CardGroup>
</section>
))}
81 changes: 17 additions & 64 deletions website/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,81 +1,34 @@
import { integrationGroups } from "@/data/integrations/shared";
import { deployOptions } from "@/data/deploy-options";
import { deployOptions } from "@/data/deploy/shared";
import { useCases } from "@/data/use-cases";
import {
faActorsBorderless,
faNodeJs,
faReact,
faNextjs,
faCloudflare
} from "@rivet-gg/icons";

# Overview

Rivet is a library for long-lived processes with durable state, realtime, and scalability. It is easily self-hostable and works with your infrastructure.

## Libraries
# Quickstart

Get started with Rivet in minutes. Choose your preferred framework or runtime to begin building with actors.

<CardGroup cols={2}>
<Card title="Actors" href="/docs/actors" icon={faActorsBorderless}>
Long-lived processes with durable state, realtime, and hibernation
</Card>
{/*<Card title="Workflows" href="/docs/workflows" icon={faNodeJs}>
<Card title="Node.js & Bun Quickstart" href="/docs/actors/quickstart/backend" icon={faNodeJs}>
Set up actors with Node.js, Bun, and web frameworks
</Card>
<Card title="Agents" href="/docs/agents" icon={faNodeJs}>
Set up actors with Node.js, Bun, and web frameworks
</Card>*/}
</CardGroup>

## Use Cases

<CardGroup cols={2}>
{useCases.map((useCase) => (
<Card
key={useCase.href}
title={useCase.title}
href={useCase.href}
icon={useCase.icon}
>
{useCase.description}
</Card>
))}
</CardGroup>

## Deploy Options

<CardGroup>
{deployOptions.map((option) => (
<Card
key={option.href}
title={option.title}
href={option.href}
icon={option.icon}
badge={option.badge}
/>
))}
</CardGroup>

## Integrations

{integrationGroups.map((group) => (
<section key={group.title}>
<h3>{group.title}</h3>
<CardGroup>
{group.items.map((integration) => (
<Card
key={integration.href}
title={integration.title}
href={integration.href}
/>
))}
</CardGroup>
</section>
))}

## Support

<CardGroup cols={2}>
<Card title="Discord" href="https://rivet.dev/discord">
Chat with the community and get realtime help from Rivet engineers
<Card title="React Quickstart" href="/docs/actors/quickstart/react" icon={faReact}>
Build real-time React applications with actors
</Card>
<Card title="GitHub Issues" href="https://github.com/rivet-dev/engine">
File bugs or request features directly in our tracker
<Card title="Next.js Quickstart" href="/docs/actors/quickstart/next-js" icon={faNextjs}>
Build server-rendered Next.js experiences backed by actors
</Card>
<Card title="Cloudflare Workers Quickstart" href="/docs/actors/quickstart/cloudflare-workers" icon={faCloudflare}>
Deploy actors on Cloudflare Workers with zero infrastructure
</Card>
</CardGroup>

4 changes: 4 additions & 0 deletions website/src/content/docs/self-hosting/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Rivet consists of several core components that work together to provide a complete actor orchestration platform. The Rivet Engine is the core of self-hosting and is used for orchestrating actors at scale:

<Warning>
Self-hosting is not required to deploy Rivet applciations in your own cloud. Please see the [deploy documentation](/docs/deploy) if trying to deploy a Rivet application.
</Warning>

## Core Components

- **Your Backend** - Your application server that handles user requests and includes a runner component that executes actor code
Expand Down
72 changes: 0 additions & 72 deletions website/src/data/deploy-options.ts

This file was deleted.

Loading
Loading