Files
api/ormconfig.json
T

25 lines
449 B
JSON
Raw Normal View History

2020-07-24 01:32:59 -05:00
{
2020-08-18 11:13:12 -05:00
"type": "mysql",
"host": "localhost",
"port": 3306,
"username": "local",
"password": "123",
"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"
}
2020-07-24 01:32:59 -05:00
}