From 8b8c2202e66e2d0af6c0be3d3fa6fadda75fa651 Mon Sep 17 00:00:00 2001 From: Kallesh B S Date: Fri, 21 Mar 2025 13:00:09 +0530 Subject: [PATCH] ormconfig for both local and server --- ormconfig.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ormconfig.ts b/ormconfig.ts index e3f6039..4a72fad 100644 --- a/ormconfig.ts +++ b/ormconfig.ts @@ -1,13 +1,15 @@ import { DataSourceOptions } from 'typeorm'; export const OracleConfig: any = { - // type: 'oracle', + user: 'Carnetsys', password: 'Carnet1234', connectString: '172.31.18.76/xe', - // entities: [__dirname + '/**/*.entity{.ts,.js}'], - // synchronize: true, - // autoCommit: true + + // user: 'system', + // password: 'root', + // connectString: '192.168.1.96/xe', + }; export const MssqlConfig: any = {