all the application configurations has been defined in application.conf, application-dev.conf and application-prod.conf. Also made the ktor server configuration in external file.

This commit is contained in:
2024-09-28 01:26:57 +05:30
parent 48877ddcec
commit 0516c2c964
9 changed files with 178 additions and 138 deletions

View File

@@ -0,0 +1,17 @@
database {
host = "localhost"
port = 1521
name = "IPKSDB"
user = "pacs_db"
password = "pacs_db"
}
bank {
server {
protocol = "http"
host = "localhost"
port = 8080
rootRoute = "IPKS_Queue_Generation"
transactionRoute = "IpksApi"
}
}