welbex-job-interview/backend/ormconfig.json

19 lines
465 B
JSON

{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "WelBeX",
"password": "123",
"database": "blog",
"synchronize": true,
"logging": false,
"entities": [
"src/entity/*.ts" ],
"migrations": [ "src/migration/**/*.ts"
],
"subscribers": [ "src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir":"src/entity", "migrationsDir":"src/migration", "subscribersDir":"src/subscriber"
}
}