@trycompai/db 1.3.20-canary.0 → 1.3.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @trycompai/db
|
|
2
|
+
|
|
3
|
+
Database package for Comp AI.
|
|
4
|
+
|
|
5
|
+
## What’s included
|
|
6
|
+
|
|
7
|
+
- Prisma schema: `dist/schema.prisma`
|
|
8
|
+
- Built output: `dist/`
|
|
9
|
+
- Postinstall helper binary: `comp-prisma-postinstall`
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
bun add @trycompai/db
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
import { db } from '@trycompai/db';
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Notes
|
|
24
|
+
|
|
25
|
+
- Publishing runs a build automatically via `prepublishOnly`.
|
|
26
|
+
- See `INTEGRATION_GUIDE.md` for integration details.
|
|
27
|
+
|
|
28
|
+
|