| 1234567891011121314151617 |
- const mongoose = require('mongoose');
- const config = require('../config/config.json');
- //const db = config.url;
- var db = 'mongodb://163.172.88.141:27017/mean-fatboar-db';
- //var mongoURI = 'mongodb://localhost:27017/my-db';
- // mongoose.set('useCreateIndex', true)
- mongoose.connect(db, {useNewUrlParser: true, useUnifiedTopology: true })
- .then(() => {
- console.log("Successfully connected to the database.");
- }).catch(err => {
- console.log("Could not connect to the database.", err);
- });
- module.exports = mongoose.connection;
|