How to change port 8080 in debug mode

How should I proceed to modify the port that jmix will run the app on, that is, another port other than the default 8080 when testing the app?

@mpedrotti

When using a spring profile e.g. testing, I would create a property file application-testing.properties

server.port=8081
1 Like

perfect, thanks