From 10c16f78ff744b1ef0e65eb3c11c9dccb6313156 Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Wed, 14 Oct 2020 18:33:11 +0300 Subject: [PATCH] ignore ormconfig files --- .gitignore | 2 ++ ormconfig.dev.json | 2 +- ormconfig.test.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 84bf36d..0dc492b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ tmp/ temp/ dist/ ormconfig.json +ormconfig.test.json +ormconfig.dev.json .env .directory .history \ No newline at end of file diff --git a/ormconfig.dev.json b/ormconfig.dev.json index 169b1af..bfda3e7 100644 --- a/ormconfig.dev.json +++ b/ormconfig.dev.json @@ -1,6 +1,6 @@ { "type": "mariadb", - "host": "db", + "host": "localhost", "port": 3306, "username": "writer", "password": "writer", diff --git a/ormconfig.test.json b/ormconfig.test.json index 6135483..26b8c9e 100644 --- a/ormconfig.test.json +++ b/ormconfig.test.json @@ -1,6 +1,6 @@ { "type": "mariadb", - "host": "dbtest", + "host": "localhost", "port": 3306, "username": "writer", "password": "writer",