Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EmanuelCampos/c4623ed8e8defda9dc5475eba601fc3d to your computer and use it in GitHub Desktop.
Save EmanuelCampos/c4623ed8e8defda9dc5475eba601fc3d to your computer and use it in GitHub Desktop.
ormconfig.json
[
{
"name": "default",
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "manel",
"password": "postgres",
"database": "gostack_gobarber",
"entities": ["./src/modules/**/infra/typeorm/entities/*.ts"],
"migrations": ["./src/shared/infra/typeorm/migrations/*.ts"],
"cli": {
"migrationsDir": "./src/shared/infra/typeorm/migrations"
}
},
{
"name": "mongo",
"type": "mongodb",
"host": "localhost",
"port": 27017,
"database": "gobarber",
"useUnifiedTopology": true,
"entities": ["./src/modules/**/infra/typeorm/schemas/*.ts"]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment