18 lines
319 B
JSON
18 lines
319 B
JSON
{
|
|
"type": "postgres",
|
|
"host": "localhost",
|
|
"port": 5432,
|
|
"username": "postgres",
|
|
"password": "Admin@123",
|
|
"database": "postgres",
|
|
"entities": [
|
|
"./src/models/*.ts"
|
|
],
|
|
"migrations": [
|
|
"./src/database/migrations/*.ts"
|
|
],
|
|
"cli": {
|
|
"migrationsDir": "./src/database/migrations"
|
|
}
|
|
}
|