w3tecch / typeorm-seeding

🌱 A delightful way to seed test data into your database.
https://www.npmjs.com/package/typeorm-seeding
MIT License
877 stars 131 forks source link

prevent seed:config to log any output #234

Open alirezaKhaki opened 1 year ago

alirezaKhaki commented 1 year ago

hi! how can I stop seed:config command to output ormconfig.json file in terminal? I don't want my database username & password to be logged.

{
  type: 'postgres',
  host: 'localhost',
  port: 5432,
  username: 'postgres',
  password: 'postgres',
  database: 'postgres',
  synchronize: true
}