October 2019
Intermediate to advanced
434 pages
11h 54m
English
To test our new service, we can easily deploy that service locally and validate its function. The local deployment of the service is configured through the application.conf configuration file that was generated when we created our project. That file should look something like the following code snippet:
// application.confktor { deployment { port = 8080 port = ${?PORT} } application { modules = [ com.packt.ApplicationKt.module ] }}
In this file, there are two key things:
The reference to ApplicationKt.module corresponds to the Application.module ...
Read now
Unlock full access