Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Last active August 18, 2020 12:25
Show Gist options
  • Select an option

  • Save nmchenry01/ea75770241c5a036aa47300cda53b905 to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/ea75770241c5a036aa47300cda53b905 to your computer and use it in GitHub Desktop.
ormconfig example for "Prisma vs. TypeORM"
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "admin",
"password": "password",
"database": "postgres",
"synchronize": true,
"entities": [
"dist/**/*.entity.js"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment