소스 검색

Add #111 manually.

Tim Dorr 9 년 전
부모
커밋
b88c428743
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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