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: {
host: appConfig.postgresHost,
port: appConfig.postgresPort,
user: 'postgres' || appConfig.postgresUsername,
password: '@Sql2023' || appConfig.postgresPassword,
user: appConfig.postgresUsername,
password: appConfig.postgresPassword,
database: appConfig.postgresDatabase,
ssl: appConfig.postgresEnableSsl,
},