@adaptware/eagles-db 0.5.29 → 0.5.30
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 +7 -2
- package/client/edge.js +9 -5
- package/client/index-browser.js +6 -2
- package/client/index.d.ts +428 -113
- package/client/index.js +9 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +13 -10
- package/client/wasm.js +9 -5
- package/package.json +1 -1
- package/prisma/schema/jobProfile.prisma +13 -10
- package/prisma/schema/migrations/20260816120000_job_profile_opening_setup/migration.sql +13 -0
package/README.md
CHANGED
|
@@ -6,10 +6,15 @@ Prisma schema and client for the Treadspace hiring database.
|
|
|
6
6
|
**CLI binary:** `treadspace-db` (see [docs/eagles-db/cli-reference.md](./docs/eagles-db/cli-reference.md))
|
|
7
7
|
|
|
8
8
|
**Local documentation:** [docs/README.md](./docs/README.md)
|
|
9
|
-
**Central
|
|
9
|
+
**Central workspace hub:** [docs/README.md](../docs/README.md)
|
|
10
|
+
**Setup:** [docs/packages/eagles-db/README.md](../docs/packages/eagles-db/README.md)
|
|
10
11
|
|
|
11
12
|
```bash
|
|
12
13
|
yarn install
|
|
13
|
-
export DATABASE_URL=postgresql
|
|
14
|
+
export DATABASE_URL="postgresql://…/treadspace?schema=public"
|
|
14
15
|
yarn generate
|
|
16
|
+
yarn build
|
|
17
|
+
yarn treadspace-db migrate:deploy
|
|
15
18
|
```
|
|
19
|
+
|
|
20
|
+
Schema files live under `prisma/schema/` (multi-file). Prefer migrations over `db push` except greenfield/Docker setup.
|