Skip to content

Commit

Permalink
Add port to knexfile for demo apps
Browse files Browse the repository at this point in the history
  • Loading branch information
apoliakov committed May 18, 2024
1 parent a52b6e0 commit 71a1675
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions greeting-emails/knexfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config = {
client: 'pg',
connection: {
host: dbosConfig.poolConfig.host,
port: dbosConfig.poolConfig.port,
user: dbosConfig.poolConfig.user,
password: dbosConfig.poolConfig.password,
database: dbosConfig.poolConfig.database,
Expand Down
1 change: 1 addition & 0 deletions shop-guide/knexfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config = {
client: 'pg',
connection: {
host: dbosConfig.poolConfig.host,
port: dbosConfig.poolConfig.port,
user: dbosConfig.poolConfig.user,
password: dbosConfig.poolConfig.password,
database: dbosConfig.poolConfig.database,
Expand Down
1 change: 1 addition & 0 deletions tpcc/knexfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config = {
client: 'pg',
connection: {
host: dbosConfig.poolConfig.host,
port: dbosConfig.poolConfig.port,
user: dbosConfig.poolConfig.user,
password: dbosConfig.poolConfig.password,
database: dbosConfig.poolConfig.database,
Expand Down
1 change: 1 addition & 0 deletions widget-store/knexfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config = {
client: 'pg',
connection: {
host: dbosConfig.poolConfig.host,
port: dbosConfig.poolConfig.port,
user: dbosConfig.poolConfig.user,
password: dbosConfig.poolConfig.password,
database: dbosConfig.poolConfig.database,
Expand Down

0 comments on commit 71a1675

Please sign in to comment.