File size: 376 Bytes
7b850b7
 
 
 
 
 
 
 
 
 
 
e1a5ce8
1
2
3
4
5
6
7
8
9
10
11
12
import * as mongoose from 'mongoose';
import { env } from 'process';

export const databaseProviders = [
  {
    provide: 'DATABASE_CONNECTION',
    useFactory: (): Promise<typeof mongoose> =>
      mongoose.connect(
        'mongodb+srv://rehmanwahlah248:[email protected]/property-listing?retryWrites=true&w=majority',
      ),
  },
];