Created
October 18, 2020 09:25
-
-
Save davidcsejtei/9b9298afb327a9a2d83689ee7f1ab8d2 to your computer and use it in GitHub Desktop.
Config file for TypeORM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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