Skip to content

Instantly share code, notes, and snippets.

@davidcsejtei
Created October 18, 2020 09:25
Show Gist options
  • Select an option

  • Save davidcsejtei/9b9298afb327a9a2d83689ee7f1ab8d2 to your computer and use it in GitHub Desktop.

Select an option

Save davidcsejtei/9b9298afb327a9a2d83689ee7f1ab8d2 to your computer and use it in GitHub Desktop.
Config file for TypeORM
{
"type": "postgres",
"host": "hostname",
"port": 22000,
"username": "username",
"password": "password",
"database": "db",
"synchronize": false,
"logging": false,
"ssl": {
"require": true,
"rejectUnauthorized": false
},
"entities": [
"src/db/entities/**/*.ts"
],
"migrations": [
"src/db/migrations/**/*.ts"
],
"subscribers": [
"src/db/subscribers/**/*.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment