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