mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 15:47:48 +01:00
8 lines
208 B
JavaScript
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);
|