Skip to content

Commit

Permalink
Fix ip
Browse files Browse the repository at this point in the history
  • Loading branch information
brubluenel committed Sep 12, 2024
1 parent c24a137 commit 1307c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import { Quote } from './random-quote/quote.entity';
imports: [
TypeOrmModule.forRoot({
type: 'postgres',
host: 'host.docker.internal',
host: '127.0.0.1',
port: 5432,
username: 'postgres', // Replace with your PostgreSQL username
password: 'wai123!', // Replace with your PostgreSQL password
database: 'happiness-postgres', // Replace with your database name
entities: [Quote],
synchronize: true, // Only for development, set to false in production
synchronize: false,
}),
RandomQuoteModule
],
Expand Down

0 comments on commit 1307c6b

Please sign in to comment.