Skip to content

Commit

Permalink
changed the portgres user and db name in the application.yml for the …
Browse files Browse the repository at this point in the history
…springboot
  • Loading branch information
jazzgrewal committed Oct 15, 2024
1 parent 65ee817 commit c0fe406
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ spring:
# Database, and JPA - Postgres
postgres:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:5432/${POSTGRES_DB:postgres}
username: ${POSTGRES_USER:postgres}
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:5432/${POSTGRES_DB:nr-silva}
username: ${POSTGRES_USER:nr-silva}
password: ${POSTGRES_PASSWORD:default}
connectionTimeout: ${DB_POOL_CONN_TIMEOUT:120000}
idleTimeout: ${DB_POOL_IDLE_TIMEOUT:60000}
Expand Down Expand Up @@ -60,8 +60,8 @@ spring:
enabled: true
baseline-on-migrate: true
locations: classpath:db/migration
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:5432/${POSTGRES_DB:postgres}
user: ${POSTGRES_USER:postgres}
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:5432/${POSTGRES_DB:nr-silva}
user: ${POSTGRES_USER:nr-silva}
password: ${POSTGRES_PASSWORD:default}

# OpenSearch settings
Expand Down

0 comments on commit c0fe406

Please sign in to comment.