Files
tcc-vamos-backend/ormconfig.json
Hugo Falcao 24c072f750 Ajustes
2022-04-17 20:38:42 -03:00

18 lines
310 B
JSON

{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "",
"database": "postgres",
"entities": [
"./src/models/*.ts"
],
"migrations": [
"./src/database/migrations/*.ts"
],
"cli": {
"migrationsDir": "./src/database/migrations"
}
}