connection to postgresql

This commit is contained in:
2025-03-27 03:10:42 +01:00
parent 3b9616aa67
commit 2ebd293900
6 changed files with 96 additions and 7 deletions

View File

@@ -6,4 +6,15 @@ jwt {
redis {
url = "redis://localhost:6379"
url = ${?REDIS_URL}
}
postgresql {
url = "jdbc:postgresql://localhost:5432/event-demo"
url = ${?POSTGRESQL_URL}
username = "event-demo"
username = ${?POSTGRESQL_USERNAME}
password = "changeit"
password = ${?POSTGRESQL_PASSWORD}
}