You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/800-guides/430-nestjs.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,13 +31,13 @@ Install the NestJS CLI and create a new project:
31
31
32
32
```terminal
33
33
npm install -g @nestjs/cli
34
-
nest new hello-prisma
34
+
nest new nestjs-prisma
35
35
```
36
36
37
37
When prompted, select **npm** as your package manager. Navigate to the project directory:
38
38
39
39
```terminal
40
-
cd hello-prisma
40
+
cd nestjs-prisma
41
41
```
42
42
43
43
You can run `npm start` to start your application at `http://localhost:3000/`. Over the course of this guide, you'll add routes to store and retrieve data about _users_ and _posts_.
0 commit comments