Files
jokes_webpage_2/ormconfig.template.json

24 lines
455 B
JSON

{
"type": "mysql",
"host": "",
"port": 0,
"username": "",
"password": "",
"database": "",
"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"
}
}