25 lines
494 B
JSON
25 lines
494 B
JSON
{
|
|
"type": "mysql",
|
|
"host": "localhost",
|
|
"port": 3306,
|
|
"username": "local",
|
|
"password": "123",
|
|
"database": "pcpuma",
|
|
"synchronize": true,
|
|
"logging": false,
|
|
"entities": [
|
|
"src/db/entity/**/*.ts"
|
|
],
|
|
"migrations": [
|
|
"src/db/migration/**/*.ts"
|
|
],
|
|
"subscribers": [
|
|
"src/db/subscriber/**/*.ts"
|
|
],
|
|
"cli": {
|
|
"entitiesDir": "src/db/entity",
|
|
"migrationsDir": "src/db/migration",
|
|
"subscribersDir": "src/db/subscriber"
|
|
}
|
|
}
|