Skip to content

Commit 486d293

Browse files
committed
update readmes
1 parent 3f217e8 commit 486d293

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The complete documentation includes detailed guides on actions, adapters, client
4040
### Installation
4141

4242
```bash
43-
bun add duron
43+
bun add duron postgres
4444
# or
4545
npm install duron
4646
```

packages/docs/content/docs/getting-started.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@ yarn add duron
2424
bun add duron
2525
```
2626

27+
Install postgres/pglite for the current database:
28+
29+
```bash
30+
# Using npm
31+
npm install postgres @electric-sql/pglite
32+
33+
# Using pnpm
34+
pnpm add postgres @electric-sql/pglite
35+
36+
# Using yarn
37+
yarn add postgres @electric-sql/pglite
38+
39+
# Using bun
40+
bun add postgres @electric-sql/pglite
41+
```
42+
2743
## Quick Start
2844

2945
Here's a simple example to get you started:

packages/duron/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ A powerful, type-safe job queue system for Node.js and Bun.js. Duron provides a
66

77
```bash
88
# Using bun
9-
bun add duron
9+
bun add duron postgres
1010

1111
# Using npm
12-
npm install duron
12+
npm install duron postgres
1313

1414
# Using pnpm
15-
pnpm add duron
15+
pnpm add duron postgres
1616

1717
# Using yarn
18-
yarn add duron
18+
yarn add duron postgres
1919
```
2020

2121
## Quick Start

0 commit comments

Comments
 (0)