create-nodepress-app 1.0.3 → 1.0.4
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 +26 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,13 +10,33 @@ npx create-nodepress-app my-project
|
|
|
10
10
|
|
|
11
11
|
## Before you start — install these first
|
|
12
12
|
|
|
13
|
-
You need three things installed on your computer before running the command above
|
|
13
|
+
You need three things installed on your computer before running the command above.
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
**Already have all three? Skip to [After running the command](#after-running-the-command).**
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
### 1. Node.js 18+
|
|
20
|
+
|
|
21
|
+
> **Already installed?** Run `node -v` in your terminal. If it shows `v18` or higher, skip to step 2.
|
|
22
|
+
|
|
23
|
+
Download from [nodejs.org](https://nodejs.org) — install the **LTS** version.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
### 2. Git
|
|
28
|
+
|
|
29
|
+
> **Already installed?** Run `git --version` in your terminal. If it shows a version number, skip to step 3.
|
|
30
|
+
|
|
31
|
+
Download from [git-scm.com/downloads](https://git-scm.com/downloads) — use the default options during install.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
### 3. PostgreSQL 14+
|
|
36
|
+
|
|
37
|
+
> **Already installed?** Skip to [After running the command](#after-running-the-command). Just make sure you remember the password you set for the `postgres` user during install.
|
|
38
|
+
|
|
39
|
+
Download from [postgresql.org/download](https://www.postgresql.org/download/).
|
|
20
40
|
|
|
21
41
|
> **PostgreSQL tip:** During installation, you will be asked to set a password for the `postgres` user. Write it down — you'll need it in step 2 below.
|
|
22
42
|
|