Update knexfile.ts

This commit is contained in:
Shehab Ghazy
2023-04-07 21:10:05 +03:00
committed by Faruk AYDIN
parent 47212c37c2
commit c4d4b2a2a8

View File

@@ -7,8 +7,8 @@ const knexConfig = {
connection: { connection: {
host: appConfig.postgresHost, host: appConfig.postgresHost,
port: appConfig.postgresPort, port: appConfig.postgresPort,
user: 'postgres' || appConfig.postgresUsername, user: appConfig.postgresUsername,
password: '@Sql2023' || appConfig.postgresPassword, password: appConfig.postgresPassword,
database: appConfig.postgresDatabase, database: appConfig.postgresDatabase,
ssl: appConfig.postgresEnableSsl, ssl: appConfig.postgresEnableSsl,
}, },