create-pg 0.0.13-pr32-patch-ankur-16472829271.0 → 0.0.14

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.
Files changed (2) hide show
  1. package/README.md +10 -12
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
- ## **What is `create-db`?**
1
+ ## **What is `create-pg`?**
2
2
 
3
- `create-db` is an open-source CLI tool that provisions [**temporary Prisma Postgres databases**](https://www.prisma.io/postgres?utm_source=create_db_npm_docs) with a single command.
4
-
5
- ![Demo Gif](demo.gif)
3
+ `create-pg` is an open-source CLI tool that provisions [**temporary Prisma Postgres databases**](https://www.prisma.io/postgres?utm_source=create_db_npm_docs) with a single command.
6
4
 
7
5
  Each database is available for **24 hours** by default. To keep the database permanently, you can **claim it for free** using the URL displayed in the CLI output.
8
6
 
@@ -13,31 +11,31 @@ This tool is designed for developers who need a fast way to test, prototype, or
13
11
  There is no need to install the tool globally. Simply run:
14
12
 
15
13
  ```bash
16
- npx create-db@latest
14
+ npx create-pg@latest
17
15
  ```
18
16
 
19
17
  You can also use the following aliases:
20
18
 
21
19
  ```bash
22
- npx create-pg@latest
20
+ npx create-db@latest
23
21
  npx create-postgres@latest
24
22
  ```
25
23
 
26
24
  ## **Examples**
27
25
 
28
26
  ```bash
29
- npx create-db # Creates a database in the default region
30
- npx create-db --region eu-west-1 # Creates a database in a specific region
31
- npx create-db --i # Interactive region selection
27
+ npx create-pg # Creates a database in the default region
28
+ npx create-pg --region eu-west-1 # Creates a database in a specific region
29
+ npx create-pg --i # Interactive region selection
32
30
 
33
31
  ```
34
32
 
35
33
  ## **Available options**
36
34
 
37
- You can run `npx create-db --help` or `npx create-db -h` to see all the available CLI options:
35
+ You can run `npx create-pg --help` or `npx create-pg -h` to see all the available CLI options:
38
36
 
39
37
  ```
40
- npx create-db [options]
38
+ npx create-pg [options]
41
39
 
42
40
  Options:
43
41
  --region <region>, -r <region> Specify a region
@@ -81,7 +79,7 @@ Options:
81
79
 
82
80
  ## **Claiming a database**
83
81
 
84
- When you create a database using `create-db`, it is temporary and will be deleted automatically after **24 hours**.
82
+ When you create a database using `create-pg`, it is temporary and will be deleted automatically after **24 hours**.
85
83
 
86
84
  The CLI output includes a **claim URL** that allows you to keep the database permanently for free.
87
85
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pg",
3
- "version": "0.0.13-pr32-patch-ankur-16472829271.0",
3
+ "version": "0.0.14",
4
4
  "description": "Instantly create a temporary Prisma Postgres database with one command, then claim and persist it in your Prisma Data Platform project when ready.",
5
5
  "main": "index.js",
6
6
  "author": "",
@@ -25,7 +25,7 @@
25
25
  "create-pg": "./index.js"
26
26
  },
27
27
  "dependencies": {
28
- "create-db": "0.0.13-pr32-patch-ankur-16472829271.0"
28
+ "create-db": "0.0.14"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"