ohmyform-api/ormconfig_pg.json
2021-05-02 12:43:54 +02:00

22 lines
367 B
JSON

{
"type": "postgres",
"host": "localhost",
"username": "root",
"password": "root",
"database": "ohmyform",
"synchronize": false,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migrations/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"migrationsDir": "src/migrations"
}
}