1
0
ohmyform/api/ormconfig_postgres.json

23 lines
424 B
JSON
Raw Permalink Normal View History

{
"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"
}
}