@prisma/cli 8.0.0-rc.7-dev.68 → 8.0.0-rc.7-dev.69
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 -10
- package/dist/cli.js +3582 -5583
- package/package.json +7 -7
- package/dist/deploy-framework-C7bQM00A.js +0 -23
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
Prisma Developer Platform.
|
|
17
17
|
|
|
18
18
|
It is one binary for the ORM, Composer, and the Prisma Developer
|
|
19
|
-
Platform: projects, branches, services,
|
|
19
|
+
Platform: projects, branches, services, service versions, environment
|
|
20
20
|
variables, and the Prisma ORM schema and migration workflow.
|
|
21
21
|
|
|
22
22
|
---
|
|
@@ -38,8 +38,7 @@ npx prisma-cli project create my-app
|
|
|
38
38
|
npx prisma-cli git connect git@github.com:owner/repo.git
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
Deployments start from pushing the connected repository, the Console, or
|
|
42
|
-
`prisma-cli composer deploy` — there is no standalone deploy command.
|
|
41
|
+
Deployments start from pushing the connected repository, the Console, or `prisma-cli deploy`.
|
|
43
42
|
|
|
44
43
|
With `pnpm`:
|
|
45
44
|
|
|
@@ -73,13 +72,11 @@ The beta package exposes `prisma-cli` so it can coexist with the existing
|
|
|
73
72
|
| `project` | List, create, link, and manage projects and their environment variables. |
|
|
74
73
|
| `git` | Connect or disconnect a project from a GitHub repository; pushes deploy. |
|
|
75
74
|
| `branch` | List Prisma branches for the resolved project. |
|
|
76
|
-
| `postgres` | Create, inspect, restore, and
|
|
75
|
+
| `postgres` | Create, inspect, back up, restore, and delete Prisma Postgres databases and their connections. |
|
|
77
76
|
| `bucket` | Create, list, and delete object-store buckets and their access keys. |
|
|
78
|
-
| `service` | Inspect services:
|
|
79
|
-
| `
|
|
80
|
-
| `
|
|
81
|
-
| `contract`, `db`, `migrate`, `migration`, `format`, `orm init`, `lsp` | The Prisma ORM workflow. |
|
|
82
|
-
| `init` | Write a committed compute config for the project. |
|
|
77
|
+
| `service` | Inspect services: versions, logs, domains, promote, roll back, delete. |
|
|
78
|
+
| `dev`, `deploy` | Run a Composer app locally; deploy it to the platform. |
|
|
79
|
+
| `contract`, `db`, `migration`, `orm init`, `lsp` | The Prisma ORM workflow. |
|
|
83
80
|
|
|
84
81
|
Common examples:
|
|
85
82
|
|
|
@@ -89,7 +86,7 @@ npx prisma-cli auth whoami
|
|
|
89
86
|
npx prisma-cli project show
|
|
90
87
|
npx prisma-cli branch list
|
|
91
88
|
npx prisma-cli service list
|
|
92
|
-
npx prisma-cli service
|
|
89
|
+
npx prisma-cli service version promote VERSION_ID
|
|
93
90
|
```
|
|
94
91
|
|
|
95
92
|
### Built for humans, CI, and agents
|