Skip to content
Merged
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
8 changes: 6 additions & 2 deletions contribute/self-host.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ the repository-specific setup.
## Storage backends

Worlds storage drivers ship as standalone JSR packages. Pick the backend that
matches your persistence needs.
matches your persistence needs. Of the durable backend packages, only
`@worlds/libsql` ships a full SDK factory today; the other drivers
(worlds-sqlite, worlds-postgres, worlds-cloudflare) are parked post-beta.

### LibSQL / Turso

Expand All @@ -56,7 +58,9 @@ database.

[`@worlds/postgres`](https://jsr.io/@worlds/postgres) provides a PostgreSQL quad
store and hybrid search index. It builds on the `pgvector` extension for vector
search, with tables created from `buildPostgresSchemaSql`:
search, with tables created from `buildPostgresSchemaSql`. The package is parked
post-beta and ships raw stores only; there is no `createPostgresSdk` factory
yet, so you assemble the stores yourself:

```typescript
import postgres from "postgres";
Expand Down