Files
ustk-todolist/config/db.js
Stepan Usatiuk c0af83f3f1 refactor app.js
test not found routes
2018-05-18 16:41:43 +03:00

8 lines
208 B
JavaScript

const mongoose = require('mongoose');
const config = require('./');
const { host, port, name } = config.db;
const connectionString = `mongodb://${host}:${port}/${name}`;
mongoose.connect(connectionString);