I have my application with this directory structure.
App
|-- src
|-- modules
|-- user
|-- role
|-- company
|-- ...
|-- app.module.ts
|-- main.js (Application Bootstrap)
|-- seed.js
|-- ...other files
I created a file with the following content:
seed.ts
I want to insert data at the beginning of the application to complete with data some tables of my databases that are needed for the application to work.
Thanks for the help!