Files
photos/ormconfig.example.json
2020-10-10 13:52:57 +03:00

25 lines
535 B
JSON

{
"type": "mariadb",
"host": "localhost",
"port": 3306,
"username": "photos",
"password": "photos",
"database": "photos",
"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"
}