Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -16,7 +16,7 @@ app.engine('html',ejs.renderFile ) | ... | @@ -16,7 +16,7 @@ app.engine('html',ejs.renderFile ) |
16 | const { User } = require('./model/User'); | 16 | const { User } = require('./model/User'); |
17 | const mongoose = require('mongoose'); | 17 | const mongoose = require('mongoose'); |
18 | // db 연결을 위한 키 값 , 보안을 위해 최종 마스터 브런치에는 포함하지 않을 예정. | 18 | // db 연결을 위한 키 값 , 보안을 위해 최종 마스터 브런치에는 포함하지 않을 예정. |
19 | -mongoose.connect('mongodb+srv://kongtae:ksas9825!%40@squartusers.e2ddc.mongodb.net/?retryWrites=true&w=majority') | 19 | +mongoose.connect('Your own Key') |
20 | .then(() => console.log('MongoDB connect!')) | 20 | .then(() => console.log('MongoDB connect!')) |
21 | .catch(err => console.log(err)) | 21 | .catch(err => console.log(err)) |
22 | 22 | ... | ... |
-
Please register or login to post a comment