24 lines
479 B
Text
24 lines
479 B
Text
|
{
|
||
|
"type": "mysql",
|
||
|
"host": "localhost",
|
||
|
"port": 3306,
|
||
|
"username": "dev",
|
||
|
"password": "dev",
|
||
|
"database": "vylbot",
|
||
|
"synchronize": true,
|
||
|
"logging": false,
|
||
|
"entities": [
|
||
|
"dist/entity/**/*.js"
|
||
|
],
|
||
|
"migrations": [
|
||
|
"dist/migration/**/*.js"
|
||
|
],
|
||
|
"subscribers": [
|
||
|
"dist/subscriber/**/*.js"
|
||
|
],
|
||
|
"cli": {
|
||
|
"entitiesDir": "dist/entity",
|
||
|
"migrationsDir": "dist/migration",
|
||
|
"subscribersDir": "dist/subscriber"
|
||
|
}
|
||
|
}
|