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...