How to seed database using TypeORM in a NestJS project
Motivation
It is often required to seed a database with initial data during development. In a NestJS + TypeORM project, we can do that with the help of typeorm-extension.
Initial project setup
Let's initialize our project using Nest CLI.
nest new nes...
blog.mazedul.dev6 min read