Files
photos/backend/ormconfig.dockerdevexample.test.json

20 lines
509 B
JSON

{
"type": "mariadb",
"host": "db",
"port": 3306,
"username": "photostestuser",
"password": "photostestpass",
"database": "photostestdb",
"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"
}