Tim Dorr hace 9 años
padre
commit
b88c428743
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      lessons/11-productionish-server/README.md

+ 3 - 1
lessons/11-productionish-server/README.md

@@ -58,8 +58,10 @@ app.listen(PORT, function() {
 
 Now run:
 
-```
+```sh
 NODE_ENV=production npm start
+# For Windows users:
+# SET NODE_ENV=production npm start
 ```
 
 Congratulations! You now have a production server for this app. After