Files
api/ormconfig.json
T
2020-09-17 12:02:31 -05:00

25 lines
449 B
JSON

{
"type": "mysql",
"host": "localhost",
"port": 3306,
"username": "root",
"password": "hola",
"database": "pcpuma",
"synchronize": false,
"logging": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "src/migration",
"subscribersDir": "src/subscriber"
}
}