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",