This commit is contained in:
2019-01-01 19:05:21 +03:00
commit 58c36bf43c
34 changed files with 14132 additions and 0 deletions

24
ormconfig.ci.json Normal file
View File

@@ -0,0 +1,24 @@
{
"type": "mariadb",
"host": "mariadb",
"port": 3306,
"username": "writer",
"password": "writer",
"database": "writer_test",
"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"
}
}