node-pt / src /modules /database /database.provider.ts
Abdul Rehman
new events
e1a5ce8
raw
history blame
365 Bytes
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',
),
},
];