소스 검색

Add #31 manually

Tim Dorr 9 년 전
부모
커밋
663a2db4e0
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lessons/11-productionish-server/README.md

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

@@ -31,10 +31,11 @@ Now when we run `npm start` it will check if our `NODE_ENV` is
 production. If it is, we run `npm run start:prod`, if it's not, we run
 `npm run start:dev`.
 
-Now we're ready to create a production server with Express. Here's a
+Now we're ready to create a production server with Express and add a new file at root dir. Here's a
 first attempt:
 
 ```js
+// server.js
 var express = require('express')
 var path = require('path')
 var compression = require('compression')