robin*

데이터베이스 기초 설정

1 +module.exports = {
2 + db: 'localhost/floater'
3 +};
1 +const config = require('./config');
2 +const db = require('monk')(config.db);
3 +
4 +module.exports = db;