Endre Deak
Endre Deak
can you share your hikari config please?
This looks a good approach to me. Another option could be having separate `Database` instance for all the tenant databases, but that would make connection pooling trickier and probably it...
Hi @omri374 I was able to start my container with Stanza, but it's a bit beyond the Dockerfile editing. As I understand, the appropriate `NLPEngine` has to be passed to...
will play with it and maybe I can put a PR together with the ability to inject the right NLPEngine based on the passed `conf`
I'm using TC with exposed as the following: ```kotlin val mysqlContainer = MySQLContainer(DockerImageName.parse("mysql:5.7.34")) .withDatabaseName("test") .withUsername("root") .withPassword("root") .also { it.start() } val database = HikariConfig().apply { it.driverClassName = "org.mariadb.jdbc.Driver" it.username =...