23 lines
424 B
JSON
23 lines
424 B
JSON
|
{
|
||
|
"type": "postgres",
|
||
|
"host": "localhost",
|
||
|
"username": "root",
|
||
|
"password": "root",
|
||
|
"database": "ohmyform",
|
||
|
"synchronize": false,
|
||
|
"logging": false,
|
||
|
"entities": [
|
||
|
"src/entity/**/*.ts"
|
||
|
],
|
||
|
"migrations": [
|
||
|
"src/migrations/postgres/**/*.ts"
|
||
|
],
|
||
|
"migrationsTransactionMode": "each",
|
||
|
"subscribers": [
|
||
|
"src/subscriber/**/*.ts"
|
||
|
],
|
||
|
"cli": {
|
||
|
"migrationsDir": "src/migrations/postgres"
|
||
|
}
|
||
|
}
|