When I'm in development, I launch the Play console locally with the command:
play ~run
When I change something in the code, the system immediately recompiles the code. So far so good.
I have deployed several test servers. What I did was install the game on the servers, and then copy the entire project structure using GIT. Then I started the servers with the following command:
play start
And the last step is to press CTRL-D to leave the console and keep the server in the background.
Yesterday I needed to apply a couple of corrections. Therefore, I copied the code using GIT, but I could not find anywhere instructions on how to stop the server and recompile. How can i do this? What would be the best procedure for deploying the hotfix?
source share