Files
event-demo/src/main/resources/application.conf
T
flecomte b60e4aa457
Tests / build (push) Successful in 7m13s
Tests / test (push) Failing after 9m19s
Tests / lint (push) Successful in 13m33s
chore: run CI test in docker
2026-08-04 20:28:49 +02:00

43 lines
743 B
Plaintext

ktor {
deployment {
port = 8080
}
application {
modules = [ eventDemo.configuration.ConfigureKtorKt.configure ]
}
}
jwt {
secret = "secret"
secret = ${?JWT_SECRET}
}
redis {
url = "redis://redis:6379"
url = ${?REDIS_URL}
}
postgresql {
url = "jdbc:postgresql://postgresql/event-demo"
url = ${?POSTGRESQL_URL}
username = "event-demo"
username = ${?POSTGRESQL_USERNAME}
password = "changeit"
password = ${?POSTGRESQL_PASSWORD}
}
rabbitmq {
url = "rabbitmq"
url = ${?RABBITMQ_URL}
port = "5672"
port = ${?RABBITMQ_PORT}
username = "event-demo"
username = ${?RABBITMQ_USERNAME}
password = "changeit"
password = ${?RABBITMQ_PASSWORD}
}