24 lines
476 B
JSON
24 lines
476 B
JSON
{
|
|
"type": "postgres",
|
|
"host": "localhost",
|
|
"port": 5432,
|
|
"username": "db",
|
|
"password": "db",
|
|
"database": "db",
|
|
"synchronize": true,
|
|
"entities": [
|
|
"api/entities/*.ts"
|
|
],
|
|
"subscribers": [
|
|
"api/subscribers/*.ts"
|
|
],
|
|
"migrations": [
|
|
"api/migrations/*.ts"
|
|
],
|
|
"cli": {
|
|
"entitiesDir": "api/entities",
|
|
"migrationsDir": "api/migrations",
|
|
"subscribersDir": "api/subscribers"
|
|
}
|
|
}
|