From 76ed7878c03f2ccb94b0aafd2c11e3b254ae966f Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Sun, 11 Oct 2020 18:59:36 +0300 Subject: [PATCH] remove ormconfig from repo --- .gitignore | 2 ++ frontend/.gitignore | 1 - ormconfig.dev.json | 25 ------------------------- ormconfig.test.json | 25 ------------------------- 4 files changed, 2 insertions(+), 51 deletions(-) delete mode 100644 ormconfig.dev.json delete mode 100644 ormconfig.test.json diff --git a/.gitignore b/.gitignore index 84bf36d..5c325f3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ tmp/ temp/ dist/ ormconfig.json +ormconfig.dev.json +ormconfig.test.json .env .directory .history \ No newline at end of file diff --git a/frontend/.gitignore b/frontend/.gitignore index e214946..36b6290 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -5,7 +5,6 @@ tmp/ temp/ dist/ ormconfig.json -ormconfig.test.json .env .cache .directory diff --git a/ormconfig.dev.json b/ormconfig.dev.json deleted file mode 100644 index f497771..0000000 --- a/ormconfig.dev.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "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" -} \ No newline at end of file diff --git a/ormconfig.test.json b/ormconfig.test.json deleted file mode 100644 index 310aa7a..0000000 --- a/ormconfig.test.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "type": "mariadb", - "host": "localhost", - "port": 3306, - "username": "photos", - "password": "photos", - "database": "photos_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" - }, - "charset": "utf8mb4" -} \ No newline at end of file