mirror of
https://github.com/usatiuk/writer.git
synced 2025-10-28 16:07:49 +01:00
25 lines
535 B
JSON
25 lines
535 B
JSON
{
|
|
"type": "mariadb",
|
|
"host": "localhost",
|
|
"port": 3306,
|
|
"username": "writer",
|
|
"password": "writer",
|
|
"database": "writer",
|
|
"synchronize": true,
|
|
"logging": false,
|
|
"entities": [
|
|
"src/entity/**/*.ts"
|
|
],
|
|
"migrations": [
|
|
"src/migration/**/*.ts"
|
|
],
|
|
"subscribers": [
|
|
"src/subscriber/**/*.ts"
|
|
],
|
|
"cli": {
|
|
"entitiesDir": "src/entity",
|
|
"migrationsDir": "src/migration",
|
|
"subscribersDir": "src/subscriber"
|
|
},
|
|
"charset": "utf8mb4"
|
|
} |