Skip to content

Commit

Permalink
Update data source name to postgres in main application.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Jul 9, 2024
1 parent c26be6a commit 6ea13d1
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion app/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,28 @@ csv {
}
}

delta {
delta {
}
}

iceberg {
iceberg {
}
}

orc {
orc {
}
}

parquet {
parquet {
}
}

jdbc {
postgresCustomer {
postgres {
url = "jdbc:postgresql://localhost:5432/customer"
url = ${?POSTGRES_URL}
user = "postgres"
Expand Down

0 comments on commit 6ea13d1

Please sign in to comment.