Files
event-demo/src/main/resources/application.conf
T
flecomte e2d7942c7e
Tests / build (push) Successful in 7m14s
Tests / lint (push) Successful in 8m35s
Tests / test (push) Failing after 11m0s
refactoring: Masive refactor to build the V2
2026-07-30 23:01:50 +02:00

43 lines
752 B
Plaintext

ktor {
deployment {
port = 8080
}
application {
modules = [ eventDemo.configuration.ConfigureKtorKt.configure ]
}
}
jwt {
secret = "secret"
secret = ${?JWT_SECRET}
}
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}
}
rabbitmq {
url = "localhost"
url = ${?RABBITMQ_URL}
port = "5672"
port = ${?RABBITMQ_PORT}
username = "event-demo"
username = ${?RABBITMQ_USERNAME}
password = "changeit"
password = ${?RABBITMQ_PASSWORD}
}