We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aa12c0 commit d87d896Copy full SHA for d87d896
lessons/11-productionish-server/README.md
@@ -27,8 +27,8 @@ scripts entry in package.json to look like this:
27
},
28
```
29
30
-Now when we run `npm start` it will check if our `NODE_ENV` is
31
-production. If it is, we run `npm run start:prod`, if it's not, we run
+When you run `npm start` it checks if the value of our `NODE_ENV` environment variable is
+`production`. If yes, it runs `npm run start:prod`, if not, it runs
32
`npm run start:dev`.
33
34
Now we're ready to create a production server with Express and add a new file at root dir. Here's a
0 commit comments