Skip to content

Commit

Permalink
fix: change from localhost -> 127.0.0.1 as a potential fix for mac users
Browse files Browse the repository at this point in the history
  • Loading branch information
Tethik committed Oct 12, 2023
1 parent 58fd6cd commit c0152fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const developmentConfig: GramConfiguration = {
},

postgres: {
host: new ExposedSecret("localhost"),
host: new ExposedSecret("127.0.0.1"),
user: new ExposedSecret("gram"),
password: new ExposedSecret("somethingsecret"),
database: new ExposedSecret("gram"),
Expand Down

0 comments on commit c0152fa

Please sign in to comment.