NestJS - Database with Prisma
Why might this PrismaService fail to connect to the database?
@Injectable()
export class PrismaService extends PrismaClient {
constructor() {
super({ datasources: { db: { url: process.env.DATABASE_URL } } });
}
}