I have two applications that need to be run at the same time. For the first app i use sbt run and the app is loaded succesfully and is listening on the port 9000. When i run the second app with sbt run i have an error saying : Failed to bind to : /0.0.0.0:9000 and it make sens since it already used by the first app but i still have the same error even when i want to run it on a different port : sbt run 9100. There's a configuration that i should manually do somewhere?
I'm using playFramework